码迷,mamicode.com
首页 > 系统相关 > 详细

eclipse修改默认的author

时间:2015-08-27 13:40:12      阅读:247      评论:0      收藏:0      [点我收藏+]

标签:

1. 在eclipse.ini中添加
-vmargs
-Duser.name={author name}
记得一定要在-vmargs之后,否则无效。

2. 设置eclipse参数
windows-->preference 
Java-->Code Style-->Code Templates 
code-->new Java files
原来的内容是:
${filecomment} 
${package_declaration} 

${typecomment} 
${type_declaration}
添加自定义内容,添加之后内容如下:
${filecomment} 
${package_declaration} 
/** 
* @author 作者 E-mail: 
* @version 创建时间:${date} ${time} 
* 类说明 
*/ 
${typecomment} 
${type_declaration}

3. 设置eclipse参数
windows-->preference 
Java-->Code Style-->Code Templates 
Comments-->files 
按照需要修改配置,并且保证上面项的配置中有${filecomment}这项。

eclipse修改默认的author

标签:

原文地址:http://my.oschina.net/u/1778261/blog/497791

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!