How can you speed up Eclipse?

后端 未结 30 2207
甜味超标
甜味超标 2020-11-22 06:04

How can you make the experience with Eclipse faster?

For instance: I disable all the plugins I don\'t need (Mylyn, Subclipse, …).<

30条回答
  •  名媛妹妹
    2020-11-22 06:49

    Add -Xverify:none to your eclipse.ini file.

    It will cut down your Eclipse startup time considerably (50% in my case if not more). This will tell the VM not to validate all the .class files it is loading.

    Consider this: Never Disable Bytecode Verification in a Production System (as mentioned in the comments)

提交回复
热议问题