Eclipse性能优化

配置文件(eclipse.ini)

指定Eclipse运行的jdk环境:
-vm
E:/STS/jdk1.8.0_60/bin/javaw.exe

jvm参数设置:
-Xms40m          初始总堆内存
-Xmx2048m      最大总堆内存,一般设置为物理内存的1/4


常用设置

1) 取消启动时要激活的插件

Window > Preferences > General > Startup and Shutdown:移除所有在启动时不需要加载的插件
Eclipse性能优化_第1张图片

2) 关闭自动更新功能

Window > Preferences > Install/Update > Automatic Updates > 取消勾选“Automatically find new updates and notify me”
Eclipse性能优化_第2张图片
Eclipse性能优化_第3张图片

3)关闭拼写检查设置

Window > Preferences > General > Editors > Text Editors > Spelling:关闭拼写检查
Eclipse性能优化_第4张图片

4)关闭自动检查功能

Window > Preferences > Validation > 勾选“Suspend all validator”
Eclipse性能优化_第5张图片

你可能感兴趣的:(Eclipse)