在 application.conf 中使用 maven 配置文件属性



在我的pom.xml文件中,我设置了多个配置文件。我想在我的 application.conf 文件中使用当前配置文件的值。Ninja 框架文档只提到了模式配置,但是我找不到有关配置文件配置的任何内容。

示例:文档提到

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

相关内容

  • 没有找到相关文章

最新更新