In pom.xml, defined this maven.compiler.source properties to tell Maven to use Java 8 to compile the project. 1. Maven Properties Java 8 pom.xml <properties> <maven.compiler.target>1.8</maven.compiler.target> <maven.compiler.source>…
在导入已存在的maven web项目的时候,总是出现Versions of Spring facet could not be detected的问题. 查资料知道有两种解决方法:一个是什么在项目根目录中新建.springBeans文件 另一个是org.springframework下没有exception的这个包. 但是我在解决的过程中试了一下,好像都没有成功,只要把pom.xml随便打个空格,或者换行保存就行了,然后重启服务器就可以了 来源:http://blog.csdn.net/wenr…