系列二十二、idea Live Templates

编程入门 行业动态 更新时间:2024-10-23 07:28:30

系列<a href=https://www.elefans.com/category/jswz/34/1766924.html style=二十二、idea Live Templates"/>

系列二十二、idea Live Templates

一、idea Live Templates

1.1、Java Group

1.1.1、fast

fast 快速在类上添加注解@Data
@AllArgsConstructor
@NoArgsConstructor
@Accessors(chain = true)
@ToString(callSuper = true)

1.1.2、getThreadName

getThreadName快速获取当前线程的名字Thread.currentThread().getName()

1.1.3、info

info快速打印log日志log.info(" result:{}", result);

1.1.4、infoj

infoj快速打印json日志log.info(" result:{}", JSON.toJSONString(result));

1.1.5、infopj

infopj快速打印Controller层的参数log.info(" param:{}", JSON.toJSONString(param));

1.1.6、mainb

mainb快速生成springboot主启动类的main方法public static void main(String[] args) {SpringApplication.run(.class, args);
}

1.1.7、msb

msb在Springboot的主启动类上快速添加注解@MapperScan(basePackages = "org.star.mapper")
@SpringBootApplication

1.1.8、sdf

sdf快速生成格式化日期SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");

1.1.9、sst

sst在Springboot的测试类上快速添加注解@Slf4j
@SpringBootTest

1.1.10、tryc

tryc快速生成try...catch代码块try {} catch (Exception e) {}

1.1.11、trycf

trycf快速生成try...catch...finally代码块try {} catch (Exception e) {} finally {}

1.1.12、tryf

tryf快速生成try...finally代码块try {} finally {}

1.2、SQL Group

1.2.1、initsql

initsql
快速生成sql基本模板
drop database if exists 20231110_shiro;
create database 20231110_shiro;
use 20231110_shiro;DROP TABLE IF EXISTS `user`;
CREATE TABLE `user`  (`id` bigint NOT NULL AUTO_INCREMENT COMMENT '主键',`is_deleted` int NOT NULL DEFAULT 0 COMMENT '删除标识 0:未删除、1:已删除',`create_time` datetime NOT NULL COMMENT '创建时间',`update_time` datetime NULL DEFAULT NULL COMMENT '修改时间',`name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '姓名',`age` int NULL DEFAULT NULL COMMENT '年龄',`email` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '邮箱',PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '用户表' ROW_FORMAT = DYNAMIC;

1.3、XML Group

1.3.1、webxml

webxml
快速生成web.xml中的基本配置
<!-- spring -->
<context-param><param-name>contextConfigLocation</param-name><param-value>classpath:applicationContext.xml</param-value>
</context-param>
<listener><listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener><!-- spring mvc -->
<servlet><servlet-name>dispatcherServlet</servlet-name><servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class><init-param><param-name>contextConfigLocation</param-name><param-value>classpath:dispatcherServlet.xml</param-value></init-param>
</servlet>
<servlet-mapping><servlet-name>dispatcherServlet</servlet-name><url-pattern>/</url-pattern>
</servlet-mapping><!-- 全局乱码过滤器 -->
<filter><filter-name>encodingFilter</filter-name><filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class><init-param><param-name>encoding</param-name><param-value>UTF-8</param-value></init-param><init-param><param-name>forceRequestEncoding</param-name><param-value>true</param-value></init-param><init-param><param-name>forceResponseEncoding</param-name><param-value>true</param-value></init-param>
</filter>
<filter-mapping><filter-name>encodingFilter</filter-name><url-pattern>/*</url-pattern>
</filter-mapping>

更多推荐

系列二十二、idea Live Templates

本文发布于:2023-11-15 11:06:56,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1598597.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:二十   系列   idea   Live   Templates

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!