Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Auto refresh eclipse project upon folder update

I want to know if there is a way to enable auto refresh of eclipse project whenever there is an update on the folder consisting project files. For instance when i update the files from version control such as SVN,or if i include files from my friend etc. I know we can simply refresh the project or use SVN plug in as such ,but i am simply curious as to folder update notifications. Thanks in advance

like image 725
Ravisha Avatar asked Aug 16 '11 03:08

Ravisha


2 Answers

Yes , Eclipse version 3.7 has the new lightweight refresh mechanism to keep the workspace synchronized with the underlying filesystem. You can enable it in Preferences > General > Workspace and select Refresh on access.

enter image description here

If you use previous version , you can still use the old refresh mechanism by selecting Refresh using native hooks or polling


Reference:

What's New in eclipse 3.7

like image 187
Ken Chan Avatar answered Oct 23 '22 02:10

Ken Chan


Check "Refresh workspace on startup" in "General->Start up and Shutdown" preferences. That should fix it after application restart.

like image 43
Ross Avatar answered Oct 23 '22 03:10

Ross