1 插件整理
1.1 Lombok
1.2 MyBatisX
1.3 MybatisCodeHelperPro (收费)
1.4 Translation
1.5 GsonFormat
1.6 Grep Console
1.7 Alibaba Java Coding Guidelines
1.8 Maven Helper
1.9 Statistic
1.10 IDE Features Trainer (快速上手,新手必备)
1.11 Spring assistant (社区版必备)
1.12 Rainbow Brackets
1.13 Codota
1.14 JSON PARSER
1.15 Alibaba Cloud Toolkit
2 快捷键模板
2.1 类注解
创建类时自动创建
setting/eidtor/file and code templates
/**
* description : TODO ${description}
* @author : qiDing
* date: ${YEAR}-${MONTH}-${DAY} ${HOUR}:${MINUTE}
*/
2.2 方法注解
key: add``
/**
* @author :qiDing
* @date : $date$ $TIME$
* description:TODO $END$
*/
date(“yyyy/MM/dd”)
time()
key: log``
private final Logger logger = LoggerFactory.getLogger($classname$.class);
className()
key: pvt``
public void test() {
$END$
}
key: pst``
public String test() {
$END$
return null;
}
key: tnm``
throw new MyException(20406,"$END$");
2.3 彩色日志
-Dspring.output.ansi.enabled=ALWAYS