- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个从命令提示符运行时运行良好的应用程序:
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
当您在 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/
我是一名优秀的程序员,十分优秀!