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文件中的特定属性?
maven工程:Missing artifact com.sun:tools:jar:1.5.0:system 解决方法