Maven 工程从一个properties 用属性占位符引用另一个properties的内容

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Maven 工程从一个properties 用属性占位符引用另一个properties的内容相关的知识,希望对你有一定的参考价值。

1、pom xml 配置

  <!--filter-->
  <build>
    <filters>
      <filter>src/main/resource/test.properties</filter><!--基础文件-->
    </filters>

    <resources>
      <resource>
        <directory>src/main/resource</directory><!--需要过滤的路径,该路径下文件可以通过属性占位符获取 filter 的内容-->
        <filtering>true</filtering>
      </resource>
    </resources>
  </build>

2、 项目结构

技术分享

 

两个文件的内容

技术分享

技术分享

3、编译项目,编译后的目录结构

技术分享

classes 类路径下context.text 的内容

技术分享

 

以上是关于Maven 工程从一个properties 用属性占位符引用另一个properties的内容的主要内容,如果未能解决你的问题,请参考以下文章

从Maven pom.xml更新sonar-project.properties文件中的特定属性?

1搭建 maven 环境

为啥新建的maven工程没有resources目录?

maven工程:Missing artifact com.sun:tools:jar:1.5.0:system 解决方法

从插件设置 Maven 属性

IDEA下maven工程的classpath