• Eclipse、MyEclipse优化,提高运行速度


    MyEclipse 是公认的优秀的软件开发工具,使用非常广泛。相信很多人在使用的过程中,发现其运行速度比较慢,因为每次操作的背后,它调用了很多的命令,执行了很多操作;但是其中大部分的操作都是非必须的;尤其是在开发大型项目时,给MyEclipse来一次瘦身,就显得十分必要了。

    以下修改经过本人测试通过,能够明显提升MyEclipse的运行速度。

    ##加大JVM的非堆内存:

    ..MyEclipse6.5eclipseeclipse.ini 文件


     把下面的那个 -XX:MaxPermSize 调大,比如 -XX:MaxPermSize=512M

    再把 -XX:PermSize 调成跟 -XX:MaxPermSize一样大 

    注意:XX:MaxPermSize 和 Xmx 的大小之和不能超过你的电脑内存大小! 

    ##去除不需要加载的模块:

    windows–>perferences–>general–>startup and shutdown 

    Automatic Updates Scheduler:去掉;

    MyEclipse Derby:一种保存成 jar 形式的数据库,去掉

    MyEclipse EASIE 打头的启动项:myeclipse 支持的服务器,只选自己用的,其他去掉;

    WTP Webservice UI Plug-in:一个跟myeclipse差不多的东西,主要差别是 WTP 是免费的,如果使用myeclipse,这个可以取消;


     

    ##取消MyEclipse在启动时自动验证项目配置文件:

    windows–>perferences–>myeclipse–>validation

    manual下面不动,build只留 classpath dependency Validator 

    手工验证方法: 在要验证的文件上,单击鼠标右键–>myeclipse–>run validation


     

    ##取消拼写检查:

    windows–>perferences–>general–>editors->Text Editors->spelling 

    右侧上面的 Enable spell checking 去掉


     

    ##修改JSP文件默认打开方式:

    JSP 的默认编辑器不好,会同时打开预览 

    windows–>perferences–>general–>editors->file associations 

    把默认改成 MyEclipse JSP Editor 


     

    ##关闭myeclipseQuick Update自动更新功能:

     

    Windows > Preferences > MyEclipse Enterprise Workbench > Community Essentials, 

       把选项 "Search for new features on startup"的前勾去掉即可。


     

    ##关闭Maven的自动更新:

     

    Window > Preferences > Myeclipse Enterprise Workbench > Maven4Myeclipse 

    禁用Download repository index updates on startup


     

    经过以上步骤的配置,MyEclipse的运行速度有明显的提升.


  • 相关阅读:
    编程之美1的个数统计
    组合以及可以重复的排列
    Swing之图书管理系统
    经常熬夜的人一定要看
    利用SharePoint Designer开发可循环工作流
    SharePoint Software DownLoad Address 微软软件 下载地址
    日期验证 正则表达式
    时间验证 正则表达式
    Reporting Services SharePoint AddIn Setup Problems
    char、varchar、text和nchar、nvarchar、ntext的区别
  • 原文地址:https://www.cnblogs.com/javawebsoa/p/3206515.html
Copyright © 2020-2023  润新知