1. 程式人生 > >maven資原始檔.properties的引用

maven資原始檔.properties的引用

資原始檔引用: 
1、maven預設系統的資原始檔在src/main/resources下,在執行mvn process-resources的時候會將此資料夾下的東西全部拷貝到classes資料夾下,同時對檔案中含有${}中的值進行引用賦值 
   
   以下操作基於如下命令列的操作:mvn archetype:create -DgroupId=com.test -DartifactId=my-app -Dversion=1.0 -DpackageName=com.test-->cd my-app
   
2、在resources資料夾下的資原始檔如何引用pom.xml以及settings.xml裡面的東西 
  建立資原始檔:src/main/resources/application.properties檔案,在下面新增如下引用 
  ${pom.name}  將引用pom.xml中的<name>my-app</name> 
  ${pom.version}  將引用pom.xml中的version>1.0-SNAPSHOT</version> 
  ${settings.localRepository}  將引用settings.xml中的<localRepository>F:\repository</localRepository> 
  同時在pom.xml中新增如下程式碼: