gpt4 book ai didi

java - 如何使用 Maven 配置文件名称作为变量

转载 作者:行者123 更新时间:2023-11-30 08:42:14 25 4
gpt4 key购买 nike

我需要构建一个可以根据其配置文件名称调用 JDBC 连接的 war 文件。

当我使用开发配置文件构建时,我需要它来调用 dev.properties 文件。当我使用 prod 配置文件构建时,我需要它从 prod.properties 文件中读取。

我的想法是以某种方式将配置文件名称用作变量,但我不知道该怎么做。

POM.XML

<profile>
<id>dev</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<profile-id>dev</profile-id>
</properties>
</profile>
<profile>
<id>prod</id>
<properties>
<profile-id>prod</profile-id>
</properties>
</profile>

servlet-context.xml

<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="location">
<value>classpath:${profile-id}.properties</value>
</property>
</bean>
<property name="dataSourceProperties">
<props>
<prop key="url" >${jdbc}</prop>
<prop key="user">user</prop>
<prop key="password">password</prop>
<prop key="implicitCachingEnabled">true</prop>
</props>
</property>

最佳答案

你必须使用maven的过滤概念。参见 http://maven.apache.org/plugins/maven-resources-plugin/examples/filter.html

添加到您的 pom 中:

  <resource>
<directory>directory.to.servlet/servlet-context.xml</directory>
<filtering>true</filtering>
</resource>

用真实目录替换directory.to.servlet

关于java - 如何使用 Maven 配置文件名称作为变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34641938/

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