spring boot项目编译报错“exporting a package from system module java.base is not allowed with --release”

本文讲述了在使用SpringBoot3.2.4时遇到的关于系统模块导出错误,解决方案是不使用`--release`参数并调整`maven.compiler.release`配置。
摘要由CSDN通过智能技术生成

1.问题描述

1.1 环境

  • IDEA 2023.3
  • JDK 21
  • Spring boot 3.2.4
  • maven-compiler-plugin 3.13.0

2.描述

今天在使用spring boot 3.2.4这个版本时,由于需要使用security包下面的类,因此需要导出相应模块。即:

<plugin>
	<groupId>org.apache.maven.plugins</groupId>
	<artifactId>maven-compiler-plugin</artifactId>
	<version>3.13.0</version>
	<configuration>
		<compilerVersion>21</compilerVersion>
		<encoding>UTF-8</encoding>
		<parameters>true</parameters>
		<source>21</source>
		<target>21</target>
		<compilerArgs>
			<arg>--add-exports</arg>
			<arg>java.base/sun.security.x509=ALL-UNNAMED</arg>
		</compilerArgs>
	</configuration>
</plugin>

但是在进行Maven编译时,报了如下的错误

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.13.0:compile (default-compile) on project demo: Compilation failure
[ERROR] exporting a package from system module java.base is not allowed with --release
[ERROR] 
[ERROR] -> [Help 1]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 

2. 分析

exporting a package from system module java.base is not allowed with --release 报错信息很清楚,exporting module和–release不能同时使用,那么就只有两个选择了:

  • 不使用exporting
  • 不使用–release

2.1 不使用exporting

这个还没有具体研究,应该有可以替代的依赖。

2.2 不使用–release

最先需要明白的是,我在什么地方使用了–release?
由于使用了spring boot parent的依赖

<parent>
	<groupId>org.springframework.boot</groupId>
	<artifactId>spring-boot-starter-parent</artifactId>
	<version>3.2.4</version>
	<relativePath/> <!-- lookup parent from repository -->
</parent>

该依赖当中又包含了

  <properties>
    <java.version>17</java.version>
    <resource.delimiter>@</resource.delimiter>
    <maven.compiler.release>${java.version}</maven.compiler.release>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  </properties>

maven.compiler.release这个参数便是引入了release的参数。那解决问题也很简单了,把这个参数去掉就好了。

3.解决方案

3.1不使用exporting

挖个坑

3.2 不使用–release

去掉<maven.compiler.release>这个参数,也很简单,只需要在pom文件当中覆盖这个参数的值:

<properties>
	<java.version>21</java.version>
	<maven.compiler.release></maven.compiler.release>
</properties>

这样就可以正常编译项目了,不会再报“exporting a package from system module java.base is not allowed with --release”错误了。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值