MyEclipse怎么设置性能才能达到最佳?
简单介绍下myeclipse吧!myeclipse企业级工作平台(myeclipse enterprise workbench ,简称myeclipse)是对eclipseide的扩展,利用它我们可以在数据库和javaee的开发、发布以及应用程序服务器的整合方面极大的提高工作效率。它是功能丰富的javaee集成开发环境,包括了完备的编码、调试、测试和发布功能,完整支持html,struts,jsp,css,javascript,spring,sql,hibernate.
随着版本的更新,myeclipse的功能越来越强大,体积也越来越大,大家应该可以感觉到每次打开myeclipse都会有卡的感觉,那么如何设置最佳的myeclipse呢,(eclipse也一样设置哦),myeclipse8.0以上的最佳设置,让你的myeclipse不再卡。
一、取消myeclipse的自动文件验证(卡傻的原因)
1、windows –> perferences –>myeclipse –> validation,保留manual(手动)部分,build下只留"classpath dependency validator" 。
2、手动验证: 右键文件 -> myeclipse -> run validation 。
二、设置工作空间的项目编码, 防止出现乱码:
1、首先打开window - preferences - general - workspace ;
2、将"text file encoding"选为"other" - "utf-8"。
3、改变现有项目的编码的步骤: 右击项目属性, 选择"text file encoding"。
三、设置其它文件的编码:
1、首先进去window -> preferences -> general -> content types;
2、将需要设置的文件设置编码, 最好统一设为utf-8 ;
3、设置后, 如javascript文件可正常显示中文;
四、设置创建jsp页面时,将jsp的默认编码设为utf-8:
1、window -> preferences -> myeclipse -> files and editors -> jsp。
2、将"encoding"选为"iso10646/unicode(utf-8)。
五、去掉格式化jsp时页面中的空行:
1、window -> preferences -> myeclipse -> html -> html source;
2、勾选"clear all blank lines"。
六、增强eclipse的自动代码提示功能:
1、首先进入window -> preferences -> java -> editor -> content assist。
2、将"auto activation triggers for java"设置为".abc"(默认是"."), 点"apply"应用。
3、导出目前的eclipse配置文件: file -> export -> general -> perferences, 选择保存路径, 保存得到*.epf文件。
4、用文本编辑器打开刚才保存的*.epf文件, 搜索".abc",将".abc"部分改为".abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz(," (以上为自动提示的触发字符,根据个人习惯设置), 保存此配置文件(个人觉得不太好用,容易出错)。
5、导入此配置文件: file -> import -> general -> perferences, 导入修改后的配置文件.第一个选项为反应时间,可设为100左右(默认200)。
【小技巧】默认下, 只有按"."或"alt + /"才出现代码提示功能, 不够强大, 作小小设置, 可将代码提示功能像vs的一样方便 。
七、高亮类中同一引用的使用位置:
1、首先进入window -> perferences -> general - > editors -> texteditors -> annotations。
2、选择"occurrences",勾引"text as" -> "highlighted"(块高亮)或"squiggles"(虚线)。
八、link with editor此选项的意思是:打开类后, 自动在包管理器这里显示类的位置。
九、关闭自动更新:
1、eclipse:首先进入windows –> perferences–> install/update -> automatic updates,不要勾选"automatically find new updates and notify me"。
2、myeclipse:
1)首先windows –> perferences–> myeclipse... -> community essentials ,不要勾选"search for new features at startup"。
2)windows –> perferences–> myeclipse... -> maven4myeclipse,不要勾选"download repository index updates on startup" 。
eclipse,不要勾选"download repository index updates on startup" 。
十、取消拼写错误检查:
【小提示】:我爱故意写错单词, 不需要系统帮我检查。
1、首先进入windows –> perferences –> general –> editors-> text editors -> spelling。
2、去掉"enable spell checking"勾选。
11、关闭不需要的启动项
在myeclipse编译器下: 首先进入windows –> perferences–> general–> startup and shutdown 。我只保留了如下项:顺序下来
1、tomcat6: 必备的...
2、内存监视器: 可以查看myeclipse的使用内存, 我喜欢这工具(在菜单myeclipse - utilities - show heap status打开)
3、jsp debug工具, 其实我也没用过, 怕有一天用到...
4、文件创建向导(个人经常用到)
5、向后兼容的意思吧, 怕有一天会用到, 但其实很少用, 可去掉
6、透视图, 应该可以去掉吧...
【小提示】其实就只用选择tomcat6。