window--preferences-general--startup and shutdown 关闭不必要的服务
window--preferences-general--editors--file associations 选择打开文件的方式
java--code style--formatter 调格式化样子
new 名字随便
commoents ---line width 9999
line wrapping--- maximum line width 9999
window--preferences-general--editors--file associations 选择打开文件的方式
java--code style--formatter 调格式化样子
new 名字随便
commoents ---line width 9999
line wrapping--- maximum line width 9999
line wrapping---set line width for preview window 9999
如果觉得myeclipes卡或者反应较慢可以修改myeclipse。ini文件 调高以下参数
-vmargs -Xms128M -Xmx512M -XX:PermSize=64M -XX:MaxPermSize=128M
-vmargs 说明后面是VM的参数,所以后面的其实都是JVM的参数了
-Xms128m JVM初始分配的堆内存
-Xmx768m JVM最大允许分配的堆内存,按需分配(根据你自己的电脑配置,一般768就差不多了)
-XX:PermSize=64M JVM初始分配的非堆内存
-XX:MaxPermSize=128M JVM最大允许分配的非堆内存,按需分配