一、maven web 项目的版本问题
当 maven web 项目刚完成创建时, jdk 的版本为 1.5,此时要更改为正在使用的 jdk版本(以更改为1.8为例)。解决方法是:更改 pom.xml 文件中的 <build> 块,并更新项目。
具体步骤如下:
1、替换 pom.xml 的 <build>:
需要将 pom.xml 文件中 <dependencies> 块下的 <build> 块整体按照如下配置。(将之前 <build> 的内容全部删除)
将 <build> 内容替换为:
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<t