JDK8 升级至JDK19
程序猿进阶 2024-07-08 15:05:03 阅读 71
优质博文IT-BLOG-CN
目前部分项目使用<code>JDK8,部分项目使用JDK19
因此,环境变量中还是保持JDK8
,只需要下载JDK19
免安装版本,通过配置IDEA
就可以完成本地开发。
一、IDEA 环境设置
【1】通过快捷键CTRL + SHIFT + ALT + S
或者File->Project Structure...
设置SDK
和Language level
,不存在JDK19
时可通过Edit
添加
【2】设置下方的<code>Modules中的Sources
模块和Dependencies
模块
【3】设置下方的<code>Platform Setting中的SDKs
模块
【4】设置<code>File->Settings...中的Build,Excepotion,Deployment
下的Builder Tools->Maven->Runner
模块
【5】设置<code>File->Settings...中的Build,Excepotion,Deployment
下的Compiler->Java Compiler
模块
【6】如果使用了<code>Tomcat点击Edit Configurations...
后,设置JRE
模块
【7】设置完成后通过<code>Maven插件进行编译,因为通过控制台执行mvn
命令时使用的是本地环境变量中配置的JDK
版本,而Maven
插件使用的是IDEA
中配置的JDK
版本。
二、POM依赖修改
在项目父模块的<code>pom.xml中添加如下plugin
<properties>
<maven.compiler.plugin.version>3.10.1</maven.compiler.plugin.version>
<java.version>19</java.version>
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven.compiler.plugin.version}</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<compilerArgument>--enable-preview</compilerArgument>
<compilerVersion>${java.version}</compilerVersion>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.12.4</version>
<configuration>
<argLine>
--add-opens java.base/java.lang=ALL-UNNAMED
--add-opens java.base/java.lang.reflect=ALL-UNNAMED
--add-opens java.base/sun.reflect.annotation=ALL-UNNAMED
--add-opens java.base/java.math=ALL-UNNAMED
--add-opens java.base/java.util=ALL-UNNAMED
--add-opens java.base/sun.util.calendar=ALL-UNNAMED
--add-opens java.base/java.io=ALL-UNNAMED
--add-opens java.base/java.net=ALL-UNNAMED
--add-opens java.xml/com.sun.org.apache.xerces.internal.jaxp.datatype=ALL-UNNAMED
</argLine>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.3.1</version>
</plugin>
</plugins>
</pluginManagement>
</build>
后面遇到最多的就是项目包的冲突问题,依次解决就好
声明
本文内容仅代表作者观点,或转载于其他网站,本站不以此文作为商业用途
如有涉及侵权,请联系本站进行删除
转载本站原创文章,请注明来源及作者。