1. 报An error occurred while filtering resources
解决方法:
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
2. 编译工程后总该是显示下面两个错误:
One or more constraints have not been satisfied.
Deployment Assembly跟java版本不匹配解决方案:在pom.xml中添加下面内容,然后Maven->update project
3. 在eclisp中引入js(JavaScript )文件出现红叉解决办法
原因:
这是Eclipse或者MyEclipse校验失败的错误,不影响程序正常执行。
解决办法:
1.可以不管,如果不影响使用,eclipse对js校验不太准;
2.运行程序,没有问题,别管了,有问题就换一个;
3.clean project;
4.如果是myeclipse,选中js文件,右键Myeclipse--ManaValidation--ExcludeResource--(选中全部或者那个js)--OK;
操作后还出现红叉,那就clean一下工程,然后刷新工程,OK红叉没了
5.You must ignore the specific project in the JavaScript Validator
Go: Project->Properties->JavaScript->Include Path->Source.
6.右键JS文件 VALIDATE一下;
7.windows-preferences
输入validation
点击进入
将JavaScript validator for js files 的两个对勾去了就OK!
点yes读完全部文件.就OK了;