本文首次发布于 Byron Han Blog, 作者 @han(Byron Han) ,转载请保留原文链接.
1、进入设置
File | Settings | Editor | General | Postfix Completion for Windows and Linux
IntelliJ IDEA | Settings | Editor | General | Postfix Completion for macOS |
2、新增后缀填充
Key: 后缀补充名称
Minimum language level:支持的JDK版本
Applicable expression types: 针对的类型
表达式: $EXPR$
引用的语句 $END
光标
3、推荐短语模版
$EXPR$.ifs
判断是否为空
1
2
3
if (StringUtils.isNotBlank($EXPR$)) {
$END$
}
$EXPR$.list
快捷list生成
1
List<$EXPR$> $END$ = new ArrayList<>();
$EXPR$.log
log生成
1
log.info("$END$:{}",$EXPR$);