https://blog.csdn.net/qq_24846645/article/details/82784276
公司近期导入了一个项目,新项目刚刚导入就有很多错误,这也是java项目的一个通病,根本的原因还是java的jvm虚拟机的问题,还有各种依赖包的问题,有些问题很明显,有些问题非常不明显
下面我就把一些应为jdk版本引起的问题记录下,
错误1:Dynamic Web Module 3.0 requires Java 1.6 or newer.
错误2:One or more constraints have not been satisfied.
错误3:The project cannot be built until build path errors are resolved
错误4:Java compiler level does not match the version of the installed Java project facet.
解决方法一(修改settings.xml文件):
打开本地maven安装目录中的settings.xml文件
例如:“E:\javatool\apache-maven-3.5.4\conf\settings.xml”
在文件中的profiles标签中(这里很重要)加入如下代码,我这里是JDK1.8,如果你是其他的版本,就需要修改成其他的版本jdk
<profile>
<id>jdk-1.8</id>
<activation>
<activeByDefault>true</activeByDefault>
<jdk>1.8</jdk>
</activation>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
</properties>
</profile>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
如下图:
解决方法二(修改pom.xml文件):
这个方法是修改maven项目中的pom.xml文件,这个比较灵活,多项目的情况下建议使用``
在pom.xml文件中插入下面代码:
<!-- jdk版本1.8 -->
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.2</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
</build>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
心得:在解决调试bug问题上需要思路是先要解决基础环境的问题,往往基础的环境的问题可以处理连带的解决很多报错的问题。
</div>
<link href="https://csdnimg.cn/release/phoenix/mdeditor/markdown_views-258a4616f7.css" rel="stylesheet">
</div>