标签:style blog http color io 使用 ar java strong
最近在项目中老是遇到Eclipse 的环境问题今天统一解决记录下来。
问题1:
Resource is out of sync with the file system......
eclipse中文件不同步引起的。在eclipse中,工程文件是由eclipse自动扫描添加的,如果在外部修改了工程目录中的文件但又关闭了自动刷新功能,则会引起文件不同步,从而搜索时出现Resource is out of sync with the file
system问题(其它功能可能也会如此)。此外,在外部没有修改eclipse工程中的文件也有可能引起该问题。
解决方法:
有两种解决方法:
1)手动刷新。即在eclipse的工程目录中,右键refresh(或者按下F5)。
2)配置eclipse的选项:
a)eclipse启动时,刷新workspace,即勾选:window—>preferences—>general—>startup and shutdown—>refresh workspace on startup;
b)window—>preferences—>general—>workspace中:勾选选项:refresh using native hooks or polling和refresh on access;
问题2 。m2eclipse报错"Unable to locate the Javac Compiler in:
maven package时总报错:
"Unable to locate the Javac Compiler in: D:\Program Files\Java\jdk1.7.0_60\..\lib\tools.jar"
方法一:
方法二:
Windows->preferences->java->installed jREs ->中加上tools.jar
方法三:
参考URL:
http://alvinqq.iteye.com/blog/947506
http://blog.csdn.net/pengchua/article/details/2604911
标签:style blog http color io 使用 ar java strong
原文地址:http://my.oschina.net/liupengjun/blog/332754