gpt4 book ai didi

java - 如何将 --illegal-access JVM 参数传递给 spring boot maven 插件

转载 作者:行者123 更新时间:2023-12-04 17:16:47 27 4
gpt4 key购买 nike

我有一个从命令提示符运行时运行良好的应用程序:

java -jar --illegal-access=permit target/Something.jar

但是,在我的 pom.xml 中配置我的 spring boot maven 插件会给我同样的错误,就好像我在没有 illegal-access=permit 的情况下运行我的 cmd部分,告诉我它被忽略了:

<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
<configuration>
<mainClass>com.something.PreMain</mainClass>
<jvmArguments>
--illegal-access=permit
</jvmArguments>
</configuration>
</plugin>

我做错了什么?这个应用程序在 java 14 中完美运行,我正在升级到 java 16。除了 intelliJ 由于缺少 illegal-access=permit 而无法在 Debug模式下启动它之外,一切仍然完美> JVM 参数。

最佳答案

如果您尝试在 IntelliJ 中运行应用程序,则无需将任何内容传递给 Maven。在 IntelliJ 中,打开您的应用程序的运行配置,然后在环境->VM 选项下添加 --illegal-access=permit。请参阅所附图片,主类将是您的 @SpringBootApplication 类的完全限定位置,例如com.something.MySpringBootApplication

enter image description here

当您在 IntelliJ 中以 Debug模式启动您的应用程序时,您会看到类似的内容

/Library/Java/JavaVirtualMachines/jdk-16.0.2.jdk/Contents/Home/bin/java -agentlib:jdwp=transport=dt_socket,address=127.0.0.1:52737,suspend=y,server =n --illegal-access=permit -XX:TieredStopAtLevel=1...,注意传递给您的应用的参数。

关于java - 如何将 --illegal-access JVM 参数传递给 spring boot maven 插件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68546110/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com