maven super pom的配置文件属性在子poms中继承
在我的项目中有 2 个配置文件,每个配置文件都有一个属性。 但我不能在孩子的资源上使用主人的财产。
Here描述得很清楚,但似乎只有一个pom文件,并且那里显示的示例不是多模块maven项目。
我想要做的就是在 spring 级别使用此属性,例如更改属性文件的位置。
<profile>
<id>p1</id>
<properties>
<properties.location>file:/apps-core1.properties</properties.location>
</properties>
</profile>
<profile>
<profile>
<id>p2</id>
<properties>
<properties.location>file:/apps-core2.properties</properties.location>
</properties>
</profile>
<profile>
我想在我拥有的每个 pom 文件中使用“properties.location”,无论是主资源还是测试资源。
这是弹簧的用法
<context:property-placeholder location="\${properties.location}" />
at my project there is 2 profiles and each profile has one property.
But I could not use master's properties at child's resources.
Here is described clearly but it seems that there is only one pom file and the sample shown at there is not an multi-module maven project.
All I want to do is use this properties at spring level like changing the location of properties file.
<profile>
<id>p1</id>
<properties>
<properties.location>file:/apps-core1.properties</properties.location>
</properties>
</profile>
<profile>
<profile>
<id>p2</id>
<properties>
<properties.location>file:/apps-core2.properties</properties.location>
</properties>
</profile>
<profile>
and I want to use "properties.location" at every pom file I had, either main-resources or test-resources.
here is the spring usage
<context:property-placeholder location="\${properties.location}" />
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我让它与一个多模块项目一起使用:
配置的父 pom 和您的配置文件具有以下配置的模块 pom
<预置><代码><构建>
<资源>
<资源>
<目录>src/main/resources
<过滤>true
<包括>
<包含> **/*.xml
请参阅 maven资源和过滤
i got it working with a multi-module project with:
<modules />
config and your profilesmodule pom with following config
see maven resources and filtering