【maven插件】maven-resources-plugin
生活随笔
收集整理的這篇文章主要介紹了
【maven插件】maven-resources-plugin
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
前言
- Apache Maven 3.5.0
- OS: Windows 7, v.6.1, x86_64 / win32
- org.apache.maven.plugins:maven-resources-plugin.version:3.1.0
- http://maven.apache.org/plugins/maven-resources-plugin//index.html
Filter
說明
Variables can be included in your resources. These variables, denoted by the ${…} delimiters, can come from the system properties, your project properties, from your filter resources and from the command line.
示例項目
項目結構
my-app │ pom.xml │ └─src├─main│ ├─java│ └─resources│ application.properties│└─test├─java└─resourcespom.xml內容
<project xmlns="http://maven.apache.org/POM/4.0.0"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"><modelVersion>4.0.0</modelVersion><groupId>test</groupId><artifactId>test</artifactId><version>0.0.1-SNAPSHOT</version><build><resources><resource><directory>src/main/resources</directory><filtering>true</filtering></resource></resources></build> </project>application.properties內容
Hello ${name}替換資源文件中的變量
命令中提供名為name的變量
mvn resources:resources -Dname="world"target/classes/application.properties的內容變成如下這樣:
Hello world變量寫到pom.xml中
<project>...<properties><name>world</name></properties>... </project>變量也可以寫到配置文件中,再有maven引入
添加文件maven-filter-values.properties
name = world修改pom.xml
... <filters><filter>maven-filter-values.properties</filter> </filters> ...spring boot中如何使用
在application.properties中,像下面這樣寫時,變量name匹配spring boot變量,而不是maven變量。
Hello ${name}如果要在spring boot項目中使用maven變量,則應該修改為:
Hello @name@總結
以上是生活随笔為你收集整理的【maven插件】maven-resources-plugin的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 【CentOS】EOF使用
- 下一篇: 葡萄干泡酒的功效与作用、禁忌和食用方法