marker下报错Type Dynamic Web Module 3.1 requires Java 1.7 or newer.
程序员文章站
2022-05-04 09:56:53
...
1.搭建一个ssm的maven项目,拷了一些jar的pom位置到pom文件后报错
2.百度后得到解决方案-其实都是jdk和x项目中的jdk版本不一致的问题,需要在pom文件中指定jdk版本
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
其中配置的jdk版本需要和项目中的jdk版本一致,比如我都是1.7
上一篇: Spring boot文件上传
下一篇: java进阶6——集合
推荐阅读
-
maven项目中的报错问题——Dynamic Web Module 3.0 requires Java 1.6 or newer.
-
marker下报错Type Dynamic Web Module 3.1 requires Java 1.7 or newer.
-
Dynamic Web Module 3.1 requires Java 1.7 or newer
-
Dynamic Web Module 3.1 requires Java 1.7 or newer
-
解决Dynamic Web Module 3.1 requires Java 1.7 or newer-解决方法
-
遇到Description Resource Path Location Type Dynamic Web Module 3.1 requires Java 1.7 or newer.