在eclipse中新建类时@auther自填充:
1. auther直接写死:
操作:Preferences->java->Code Style->Code Templates->Comments->Types
/**
* @author ${user}
*
* ${tags}
*/
直接将${user}替换成要改的username。
2. 修改定义文件:
操作:Preferences->java->Code Style->Code Templates->Code->New Java files
${filecomment}
${package_declaration}
/**
* @author username
*/
${typecomment}
${type_declaration}
中间加上作者名。
参照:http://keating.iteye.com/blog/786713