gpt4 book ai didi

java - 在 application.conf 中使用 Maven 配置文件属性

转载 作者:行者123 更新时间:2023-12-02 12:00:21 28 4
gpt4 key购买 nike

在我的 pom.xml 文件中,我设置了多个配置文件。我想在 application.conf 文件中使用当前配置文件的值。 Ninja Framework 文档仅提到 mode configurations ,但是我找不到任何有关配置文件配置的信息。

示例:文档提到

database.name=database_production   # will be used when no mode is set (or prod)
%prod.database.name=database_prod # will be used when running in prod mode
%dev.database.name=database_dev # will be used when running in dev mode
%test.database.name=database_test # will be used when running in test mode

如何根据当前使用的配置文件设置不同的数据库名称?

最佳答案

您可以将您想要替换的任何内容作为属性添加到您的配置文件定义中,然后启用 Maven 资源过滤,如下所示:

<build>
..
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
..
</build>
<profiles>
<profile>
<id>developmentProfile</id>
<properties>
<dbName>database.name=database_dev</dbName>
</properties>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
</profile>
<profile>
<id>productionProfile</id>
<properties>
<dbName>database.name=database_prod</dbName>
</properties>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
</profile>
</profiles>

请注意,如果您使用 spring-boot,则应像这样引用 application.properties 文件中的属性才能使其正常工作:

someOtherProp = something
@dbName@

之后,构建应用程序应该正确过滤属性:

mvn clean install -PdevelopmentProfile

结果:

someOtherProp=something
database.name=database_dev

关于java - 在 application.conf 中使用 Maven 配置文件属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47305320/

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