欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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文件后报错

marker下报错Type Dynamic Web Module 3.1 requires Java 1.7 or newer.

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