maven super pom的配置文件属性在子poms中继承

发布于 2024-12-07 02:30:31 字数 838 浏览 0 评论 0原文

在我的项目中有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

就此别过 2024-12-14 02:30:31

我让它与一个多模块项目一起使用:

  • 具有 配置的父 pom 和您的配置文件
  • 具有以下配置的模块 pom

    <预置><代码><构建>
    <资源>
    <资源>
    <目录>src/main/resources
    <过滤>true
    <包括>
    <包含> **/*.xml



请参阅 maven资源和过滤

i got it working with a multi-module project with:

  • parent pom with <modules /> config and your profiles
  • module pom with following config

    <build>
       <resources>
          <resource>
             <directory>src/main/resources</directory>
             <filtering>true</filtering>
             <includes>
                <include>**/*.xml</include>
             </includes>                
          </resource>
       </resources>
    </build>
    

see maven resources and filtering

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文