eclipse项目红叉

查看problem,根据不同提示进行不同处理:

1、JAX-RS (REST Web Services) 2.0 requires Java 1.7 or newer.SSMDemo Maven Webline 1Maven Java EE Configuration Problem

解决:pom.xml文件添加:

  1. <plugins>  
  2. <plugin>  
  3. <groupId>org.apache.maven.pluginsgroupId>  
  4. <artifactId>maven-compiler-pluginartifactId>  
  5. <configuration>  
  6. <source>1.7(修改成自己JDK的版本)source>  
  7. <target>1.7(修改成自己JDK的版本)target>  
  8. configuration>  
  9. plugin>  
  10. plugins>
2、 Java compiler level does not match the version of the installed Java project

解决:右键工程,点击“Properties”,然后点击左侧的“Project Facets”,在右边将Java的级别设置为跟Java编译器级别一致即可。

3、JavaServer Faces 2.2 can not be installed : One or more constraints have not been satisfied.
JavaServer Faces 2.2 requires Dynamic Web Module 2.5 or newer.

解决:

先改web.xmlwebapp节点:


xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
version="3.1">

然后关闭Eclipse,改项目下的.settings\org.eclipse.wst.common.project.facet.core.xml.将版本改成为3.1,将成后是,再启动Eclipse. 

右键项目->Maven->Update Project

你可能感兴趣的:(配置杂类)