Why is SpringSource Tool Suite (STS) so slow? And how can I fix it?

為{幸葍}努か 提交于 2019-11-28 04:49:08

I had the same problem on a MacBook Pro i7. Switching editors or views was painfully slow. Solved it by turning off Spring validators that I didn't need. Go to:

SpringSource Tool Suite -> Preferences -> Spring -> Project Validators

Specifically, I deselected all validators except for Spring Validator, Beans Validator and STS Bean Validator.

Tomato

I would also suggest turning off automatic build feature. Uncheck Project -> Build Automatically. Combined with Michael's suggestions it made difference for me.

Edit: automatic content assist feature was also slowing me down, so I turned it off. I just use it only when I need it by pressing CTRL + Space. See here for details.

Disable the startup window (called Dashboard) which downloads RSS feeds from the Spring team upon program launch: http://tux2323.blogspot.se/2010/08/eclipse-tipp-reloaded-disable-sts.html. Should you want see it you can use Help->Dashboard.

Couple of more ways to reduce the memory foot print on Eclipse/STS

  1. you can right click on project and choose to close unrelated projects

  2. you can try creating working sets with related projects and select only the one you are working on, you can do this from Top Right corner(View Menu) on the Project explorer tab

  3. Youcan monitor Heapsize, from Preferences General you can check the "Show Heap Status" to show the currently used heapspace , this will show a "recycle bin" icon beside the heap value, you can click this to force Garbage collection

alain.janinm

I had a problem with a Maven update process running for a while, every time I launch STS.

Maven tried to connect to http://dist.springsource.com/release/TOOLS/update/e<your_eclipse_version>

As per the Jira of STS, I changed it to

http://download.springsource.com/release/TOOLS/update/e<your_eclipse_version>

in Window -> Preferences -> Install/Update -> Available software

And now the process is immediate.

Try this:

C:\sts-3.6.0.RELEASE\sts.exe -clean
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!