1、查看以下图片,运行时提示java错误,我这里遇到的是pom.xml里面JDK版本不指定的原因
2、在pom.xml中引入这段依赖,这段代码是 Maven 项目中的插件配置,用于指定 Java 编译器的版本。
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
</plugins>
来指定版本。
3、运行创建的Test类,成功输出。