转自:http://www.blogjava.net/zhangyuan/archive/2010/11/17/338232.html
第一步: 取消自动validationvalidation有一堆,什么xml、jsp、jsf、js等等,我们没有必要全部都去自动校验一下,只是需要的时候才会手工校验一下! 取消方法: windows–>perferences–>myeclipse–>validation 除开Manual下面的复选框全部选中之外,其他全部不选 手工验证方法: 在要验证的文件上,单击鼠标右键–>myeclipse–>run validation 第二步:取消Eclipse拼写检查1、拼写检查会给我们带来不少的麻烦,我们的方法命名都会是单词的缩写,他也会提示有错,所以最好去掉,没有多大的用处 windows–>perferences–>general->editors->Text Editors->spelling第三步:取消myeclipse的启动项myeclipse会有很多的启动项,而其中很多我们都用不着,或者只用一两个,取消前面不用的就可以 windows–>perferences–>general–>startup and shutdown 启动项功能如下,可以根据自己的需要选择Automatic Updates Scheduler //自动升级调度 MyEclipse QuickSetup //快速启动 MyEclipse Derby //derby是一个开源数据库的名字MyEclipse EASIE Geronimo 1 //同色都是应用服务器的名字 MyEclipse EASIE Geronimo 2MyEclipse EASIE JBOSS 2MyEclipse EASIE JBOSS 3MyEclipse EASIE JBOSS 4MyEclipse EASIE JBOSS 5MyEclipse EASIE JBOSS MyEclipse EASIE Jetty 4MyEclipse EASIE Jetty 5MyEclipse EASIE Jetty 6MyEclipse EASIE Jetty MyEclipse EASIE JOnAS 3MyEclipse EASIE JOnAS 4MyEclipse EASIE JOnAS MyEclipse EASIE JRun 4MyEclipse EASIE JRun MyEclipse EASIE Oracle 10 AS MyEclipse EASIE Oracle 9 AS MyEclipse EASIE Oracle AS MyEclipse EASIE Orion 1MyEclipse EASIE Orion 2MyEclipse EASIE Resin 2MyEclipse EASIE Resin 3MyEclipse EASIE Resin MyEclipse EASIE Sun 8.x MyEclipse EASIE Sun 8MyEclipse EASIE Sun 9MyEclipse EASIE Glassfish 2MyEclipse EASIE Glassfish 1MyEclipse EASIE Sun One MyEclipse EASIE MyEclipse Tomcat 6 Server MyEclipse EASIE Tomcat 4MyEclipse EASIE Tomcat 5MyEclipse EASIE Tomcat 6MyEclipse EASIE Tomcat MyEclipse EASIE WebLogic 10MyEclipse EASIE WebLogic 6MyEclipse EASIE WebLogic 7MyEclipse EASIE WebLogic 8MyEclipse EASIE WebLogic 9MyEclipse EASIE WebLogic MyEclipse EASIE WebSphere 5MyEclipse EASIE WebSphere 6.1MyEclipse EASIE WebSphere 6MyEclipse EASIE WebSphere 4MyEclipse Examples //样例 MyEclipse Memory Monitor //内存监控 MyEclipse Tapestry Integration //插件集成 MyEclipse JSP Debug Tooling //jsp调试插件 MyEclipse File Creation Wizards //文件创建程序 ICEfaces Integration for MyEclipse //基于Ajax的JSF开发框架()MyEclipse Backward Compatibility //后台功能 MyEclipse Perspective Plug-in //透视图插件 Pluse Collaboration Control Center //Eclipse的网页管理中心eclipse-cs 4.x.x -> 5.0.0 Migration Plug-in //Eclipse插件兼容组件Mozilla Debug UI Plug-in(Incubation) //Mozilla调试插件(Mozilla是一款浏览器) Dynamic Languages ToolKit Core UI //对入PHP等动态语言支持的用户接口WTP Webservice UI Plug-in //Web 服务视图插件 JavaServer Faces Tools - Core //jsf工具核心包 Automatic Updates Scheduler //自动更新Service policy //Web提供的服务性能目标定义,自动管理Atfdebug Plug-in(Incubation) //动态语言的调试工具Auxiliary Web Module Support for MeEclipse// 辅助的Web模块支持.(可能是Struts等文件自动添加)JSF Editor Preview Support for MyEclipse//jsf编辑器第四步:更改jsp默认打开的方式 安装了myeclipse后,编辑jsp页面,会打开他的编辑页面,同时也有预览页面,速度很慢,不适合开发。所以更改之windows–>perferences–>general–>editors->file associations 选择*.jsp,把编译器改为默认启动MyEclipse JSP Edition(在下方选择一种编辑器,然后点击左边的default按钮 )第五步: 更改内存使用文件 1、打开 eclipse.ini -startup ../Common/plugins/org.eclipse.equinox.launcher_1.0.201.R35x_v20090715.jar --launcher.library ../Common/plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.0.200.v20090519 -install D:/Myeclipse 8.5/Program -vm D:/Myeclipse 8.5/Common/binary/com.sun.java.jdk.win32.x86_1.6.0.013/jre/bin/client/jvm.dll -configuration configuration -vmargs -Xmx512m -XX:MaxPermSize=1024m -XX:ReservedCodeCacheSize=128m 把下面的那个 -XX:MaxPermSize 调大,比如 -XX:MaxPermSize=1024M,再把 -XX:PermSize 调成跟 -XX:MaxPermSize一样大 原因:大家一定对这个画面很熟悉吧: 几乎每次 eclipse 卡到当都是因为这个非堆内存不足造成的,把最大跟最小调成一样是因为不让 myeclipse 频繁的换内存区域大小 注意:XX:MaxPermSize 和 Xmx 的大小之和不能超过你的电脑内存大小 经理比较奢侈,就调到了1024第六步: 取消Maven更新(启动更新) Window > Preferences > Myeclipse> Maven4Myeclipse > Maven>禁用Download repository index updates on startup