myeclipse 工具取消自动拼音检查(spell check)和eclipse格式化管理
1》当你使用MyEclipse时会进行拼写检查,只要简单的设置,它就不再烦恼你了。
Window–》preferences–》generals–》texteditor–》spelling
在这个页面中,取消enablespellchecking这个选项。
如果页面还有残留的拼写检查
project–》clean
在这个页面中,选择要清除错误的工程。
2》
什么东西都可能会被忘掉,我这种记性不好的就更容易忘了。换了电脑后eclipse中的@author变了,于是找了下修改@author的方法:
1.在eclipse.ini中添加
-vmargs
-Duser.name={authorname}
记得一定要在-vmargs之后,否则无效。
2.设置eclipse参数
windows-->preference
Java-->CodeStyle-->CodeTemplates
code-->newJavafiles
原来的内容是:
${filecomment}
${package_declaration}
${typecomment}
${type_declaration}
添加自定义内容,添加之后内容如下:
${filecomment}
${package_declaration}
/**
*@author作者E-mail:
*@version创建时间:${date}${time}
*类说明
*/
${typecomment}
${type_declaration}
3.设置eclipse参数
windows-->preference
Java-->CodeStyle-->CodeTemplates
Comments-->files
按照需要修改配置,并且保证上面项的配置中有${filecomment}这项。
相关推荐
A.在myeclise中恢复例子开发环境:1>在myeclipse中新建一个web工程,项目名称自己任意取名,"J2EE Specification Level"一栏选择"J2EE1.4",然后点击"