一.生成类注释 1.打开Preferences-->Editor-->File and Code Templates,右侧选择Filestab页,找到Class.Interface,可以看到右侧模板里引用了一个File Header.java模板,如下图: 1.1模板变量说明 ${PACKAGE_NAME} name of the package in which the new file is created ${USER} current user system login nam…
近日在研究重构代码的时候有用到idea的不少插件,比如CheckStyle,同时下载了阿里的开发规约,收到不少启发. 规约中会要求所有的方法都有Javadoc,但是通常我们用idea默认生成的getter和setter方法是不带注释的,当然,我们同样可以设置idea像MyEclipse一样生成带有Javadoc的模板,具体解决方案如下: 比如我们有这么一个pojo类: /** * 人类. * @author eric */ public final class People { /** * 姓名…