myeclipse10.0优化
我用的是myeclipse10.0做的优化,早起版本8.5、8.5也都大同小异
一、Myeclipse10修改字体 MyEclipse10是基于Eclipse3.7内核,但在Eclipse的Preferences-〉general-〉 Appearance->Colors and Fonts 中并没有找到Courier New字体,它采用的是Consolas字体,中文看着非常小非常别扭,在Windows7下,系统自带虽然有Courier New字体,但是并没有激活显示,需要手动激活,才能在软件中使用 激活方法如下: 在win7的控制面板->字体,找到Courier New,右键,显示。 Courier 常规 ,右键,显示。 window-->preferences-->搜索font-->Color and Font-->Basic-->Text Font-->Edit--> Courier New-->常规-->四号
二、myeclipse修改jsp、xml默认打开方式 window-->preferences-->General-->Editors-->File Associations-->选择File Type--> Associated editors选择默认的打开方式(Default)
三、Myeclipse修改编译兼容级别_Compiler compliance Level Window-->Preferences-->Java-->Compiler --> Compiler compliance Level-->1.6
四、修改Myeclipse编码方式:text+jsp 1. window-->preferences-->搜索JSP-->Myeclipse-->Files and Editors-->JSP-->encoding-->UTF-8 2. window-->preferences-->General-->Workspace-->Text file encoding-->Other-->UTF-8
五、myeclipse修改Jboss内存大小 myeclipse菜单栏:Preferences-->搜索Jboss-->Jboss7.X下-->JDK--Optional java VM arguments加入如下代码: -Xms512m -Xmx1024m -XX:MaxNewSize=256m -XX:MaxPermSize=256m
七 、关闭updating indexes Window > Preferences > Myeclipse Enterprise Workbench > Maven4Myeclipse > Maven> 禁用Download repository index updates on startup 。
十一、加大JVM的非堆内存
打开 myeclipse.ini -startup ../Common\plugins\org.eclipse.equinox.launcher_1.0.101.R34x_v20081125.jar --launcher.library ../Common\plugins\org.eclipse.equinox.launcher.win32.win32.x86_1.0.101.R34x_v20080731 -clean -configuration configuration -vm C:\Users\lenovo\AppData\Local\Genuitec\Common\binary\com.sun.java.jdk.win32.x86_1.6.0.013\jre\bin\client\jvm.dll -vmargs -Xmx384m -XX:MaxPermSize=384m -XX:ReservedCodeCacheSize=96m
以上是我的myeclipse.ini,需要修改是 -Xmx,-XX:MaxPermSize,-XX:ReservedCodeCacheSize, 将这三项的值调大,但并不是越大越好,曾经在相同的条件下做过测试(内存2GB),-Xmx,-XX:MaxPermSize的值为384m时比512m时要快(视具体的计算机而定), -Xmx,-XX:MaxPermSize 的值设为同样大小且两者之和不能超出你的计算机本身的内存大小
我用的是myeclipse10.0做的优化,早起版本8.5、8.5也都大同小异
一、Myeclipse10修改字体 MyEclipse10是基于Eclipse3.7内核,但在Eclipse的Preferences-〉general-〉 Appearance->Colors and Fonts 中并没有找到Courier New字体,它采用的是Consolas字体,中文看着非常小非常别扭,在Windows7下,系统自带虽然有Courier New字体,但是并没有激活显示,需要手动激活,才能在软件中使用 激活方法如下: 在win7的控制面板->字体,找到Courier New,右键,显示。 Courier 常规 ,右键,显示。 window-->preferences-->搜索font-->Color and Font-->Basic-->Text Font-->Edit--> Courier New-->常规-->四号
二、myeclipse修改jsp、xml默认打开方式 window-->preferences-->General-->Editors-->File Associations-->选择File Type--> Associated editors选择默认的打开方式(Default)
三、Myeclipse修改编译兼容级别_Compiler compliance Level Window-->Preferences-->Java-->Compiler --> Compiler compliance Level-->1.6
四、修改Myeclipse编码方式:text+jsp 1. window-->preferences-->搜索JSP-->Myeclipse-->Files and Editors-->JSP-->encoding-->UTF-8 2. window-->preferences-->General-->Workspace-->Text file encoding-->Other-->UTF-8
五、myeclipse修改Jboss内存大小 myeclipse菜单栏:Preferences-->搜索Jboss-->Jboss7.X下-->JDK--Optional java VM arguments加入如下代码: -Xms512m -Xmx1024m -XX:MaxNewSize=256m -XX:MaxPermSize=256m
七 、关闭updating indexes Window > Preferences > Myeclipse Enterprise Workbench > Maven4Myeclipse > Maven> 禁用Download repository index updates on startup 。
十一、加大JVM的非堆内存
打开 myeclipse.ini -startup ../Common\plugins\org.eclipse.equinox.launcher_1.0.101.R34x_v20081125.jar --launcher.library ../Common\plugins\org.eclipse.equinox.launcher.win32.win32.x86_1.0.101.R34x_v20080731 -clean -configuration configuration -vm C:\Users\lenovo\AppData\Local\Genuitec\Common\binary\com.sun.java.jdk.win32.x86_1.6.0.013\jre\bin\client\jvm.dll -vmargs -Xmx384m -XX:MaxPermSize=384m -XX:ReservedCodeCacheSize=96m
以上是我的myeclipse.ini,需要修改是 -Xmx,-XX:MaxPermSize,-XX:ReservedCodeCacheSize, 将这三项的值调大,但并不是越大越好,曾经在相同的条件下做过测试(内存2GB),-Xmx,-XX:MaxPermSize的值为384m时比512m时要快(视具体的计算机而定), -Xmx,-XX:MaxPermSize 的值设为同样大小且两者之和不能超出你的计算机本身的内存大小
来源:https://www.cnblogs.com/DeepBlues/p/3384429.html