解決Eclipse/STS 中出現Resource is out of sync with the file system 的異常

執筆記憶的空白發表於2017-03-06

 The error simply says, “you've made changes in files in your workspace from outside eclipse”. 


意思就是:你已經在你的工作空間更新了檔案,但是eclipse並沒有, 所以出現了這個異常


解決方案:

The best way would be to let Eclipse automatically handle any external changes in file system. So that when you compile the code it never gives the error “resource is out of sync with the filesystem”.

意思就是:最好的方法就是在你的Eclipse/STS 設定一下,當檔案改變時自動重新整理,這樣你就永遠不用擔心編譯程式碼時會出現這個異常了


具體的方案有兩個:

1、直接右鍵你的專案,進行Refresh 重新整理下

2、選擇Eclipse的  Window -> Preferences -> General -> Workspace   ,勾選以下兩個按鈕(問題完美解決):

  • Refresh Automatically
  • Refresh using native hooks or pooling

相關文章