繁体   English   中英

如何为 maven 命令行附加 VM 选项

[英]How to attach VM options for maven command line

如何在定义为 VM 选项的 maven 命令行中添加 arguments。 在 Intellij 我有配置

java 11 -Djasypt.encryptor.password=xxx

当我在配置 class 中使用 @Value 注释读取 VM 选项时,该解决方案非常有效。

@Value("${jasypt.encryptor.password}")
private String jasyptEncryptorPassword;

我正在使用以下命令 mvn -Djasypt.encryptor.password=xx spring-boot:run 但它无法获取以下错误。

org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'jasyptConfiguration': Injection of autowired dependencies failed; nested exception is java.lang.IllegalArgumentException: Could not resolve placeholder 'jasypt.encryptor.password' in value "${jasypt.encryptor.password}"

仅对于命令 java -jar 可以附加 VM 选项吗?

您可以将 VM 选项附加到 spring 引导插件,如下所示:

mvn spring-boot:run -Dspring-boot.run.jvmArguments="-Djasypt.encryptor.password=xxx"

在此处检查插件的文档: spring-boot-maven-plugin docs

其他选项是在pom.xml中设置它

<plugin>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-maven-plugin</artifactId>
    <configuration>
        <jvmArguments>
            -Djasypt.encryptor.password=xxx
        </jvmArguments>
    </configuration>
</plugin>

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM