`

maven Java compiler level does not match the version of the installed Java proje

阅读更多
Java compiler level does not match the version of the installed Java project facet.
Dynamic Web Module 3.0 requires Java 1.6 or newer.




出现上述问题 正常在build path里面 重新选一下jdk版本即可;



可是试过工程右键-Maven-Update Project后又出现问题,经查找,STS搭建maven工程时报错,原来是本地maven配置文件的原因,在本地apache-maven/conf/setting.xml文件的<profiles></profiles>里加入

	<profile>  
		<id>jdk-1.7</id>  
		 <activation>  
			  <activeByDefault>true</activeByDefault>  
			  <jdk>1.7</jdk>  
		  </activation>  
		<properties>  
			<maven.compiler.source>1.7</maven.compiler.source>  
			<maven.compiler.target>1.7</maven.compiler.target>  
			<maven.compiler.compilerVersion>1.7</maven.compiler.compilerVersion>  
		</properties>  
	</profile> 


然后:工程右键-Maven-Update Project即可。
  • 大小: 59.1 KB
  • 大小: 95.8 KB
1
1
分享到:
评论
1 楼 安静听歌 2015-12-08  
哈哈哈哈~

相关推荐

Global site tag (gtag.js) - Google Analytics