IDEA-Maven项目的jdk版本设置方法
程序员文章站
2023-12-18 16:11:40
在 intellij idea 中,我们需要设置 settings 中的 java compiler 和 project structure 中的 language lev...
在 intellij idea 中,我们需要设置 settings 中的 java compiler 和 project structure 中的 language level 中的 jdk 版本为自己目前使用的版本,否则会经常提示我们 jdk 版本不正确导致的语法错误。
比如配置为 jdk1.8 :
但是在 maven 项目中,java compiler 和 language level 中的设置会自动变回到 pom.xml 文件中设置的 jdk 版本或者默认的 jdk1.5 版本。所以我们需要在 pom.xml 文件中修改 jdk 版本的配置或者自己添加配置:
<!-- 这里一般有 maven 的默认配置,修改即可 --> <properties> <project.build.sourceencoding>utf-8</project.build.sourceencoding> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> </properties>
或者:
<build> <plugins> <plugin> <groupid>org.apache.maven.plugins</groupid> <artifactid>maven-compiler-plugin</artifactid> <version>3.7.0</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> </plugins> </build>
注意: 如果 properties 和 build 里面都有配置的话,那么 properties 会覆盖掉 build 里面的配置,即以 properties 里面的配置为准。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。