我有 2 个外部属性 security.properties 和 env.properties,我在 security.properties 中有一个密钥作为 key1,我想根据 env.properties key1 替换这个 key1 值
前任:
security.properties
hibernate.connection.url=jdbc:oracle:thin:@localhost:4521/NGI
env.properties
jdbc.url=jdbc:oracle:thin:@localhost:4521/NGI (it defers based on the environment)
我想根据加载的环境将 hibernate.connection.url 替换为 jdbc.url。
我尝试了以下选项,但出现构建失败错误
<configuration>
<file>target/${project.artifactId}/security.properties</file>
<replacements>
<replacement>
<token>${hibernate.connection.url}</token>
<value>${jdbc.url}</value>
</replacement>
</replacements>
</configuration>
请分享你的建议