MyEclipse 优化

根据网络整理,很实用。

 

1、取消MyEclipse对XML、JSP、HTML、JSF、JS自动校验功能,具体操作如下:
 Window ——> perferences ——> MyEclipse Enterprise Workbench ——> Validation ——> 将Build复选框的勾选全部去掉。
 可手工校验:工作区鼠标右键 ——> MyEclipse ——> Run Validation
 
2、去掉MyEclipse的拼写检查,具体操作如下:
 Window ——> perferences ——> General ——>  Editors ——> Text Editors ——> Spelling ——> 将Enable spell checking复选框的勾选去掉。
 
3、去掉MyEclipse繁杂的自带插件自动加载项,具体操作如下:
 Window ——> perferences ——> General ——> Startup and Shutdown ——> 将Plug-ins activated on startup 中的复选框有选择性的勾选去掉。
 
4、修改MyEclipse编辑JSP页面时的编辑工具,具体操作如下:
 Window ——> perferences ——> General ——> Editors ——> File Associations ——>
  在File types 中选择 *.jsp ——> 在Associated editors 中将"MyEclipse JSP Editor"设置为默认。
  
5、修改MyEclipse安装目录的eclipse.ini文件,具体内容如下:
 -clean
 -showsplash
 com.genuitec.myeclipse.product.ide
 --launcher.XXMaxPermSize
 256m
 -vmargs
 -Xms128m
 -Xmx512m
 -Duser.language=en
 -XX:PermSize=128M
 -XX:MaxPermSize=256M

 

你可能感兴趣的:(eclipse,jsp,xml,MyEclipse,JSF)