每次都要给文档添加日期等注释太繁琐,设置个自动添加注释。

IntelliJ IDEA -> Preferences

Preferences

Editor -> File and Code Templates -> Includes -> File Header

File Header

以下两种仅供参考:

1
2
3
/**
* Created by ${USER} on ${DATE} ${TIME}
*/
1
2
3
4
5
6
/**
* @Author Onns
* @Date ${DATE} ${TIME}
* @Version 1.0
* @Website https://onns.xyz/blog/
*/

然后下次新建class的时候,就会出现自动注释了:

效果图

#参考链接