IntelliJ IDEA(版本2019.2.3)设置类注释模版和方法模版
类注释
1 、首先打开菜单File->Settings打开设置对话框,在Editor->File and Code Templates的右侧选项卡Files中找到Class,如下图所示:
在类的代码模版中public class上有一句#parse(“File Header.java”),因此我们只要在File Header.java中设置自己的模版
2、在Editor->File and Code Templates的右侧选项卡includes中找到File Header,如下图所示:
我们在Includes下找到File Header文件,编辑模版内容如下:
/**
*@program: ${PROJECT_NAME}
*@description: ${description}
*@author: xxx
*@create: ${YEAR}-${MONTH}-${DAY} ${HOUR}:${MINUTE}
*/
3.点击Apply应用模版,点击OK关闭设置完成