java Maven: 如何在properties文件中获取maven的 pom.xml 的键值_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > java Maven: 如何在properties文件中获取maven的 pom.xml 的键值

java Maven: 如何在properties文件中获取maven的 pom.xml 的键值

 2018/3/22 21:47:14  __点__  程序员俱乐部  我要评论(0)
  • 摘要:举例:项目读取pom文件路径的方法:pom文件内:<profiles><profile><id>development</id><activation><activeByDefault>true</activeByDefault></activation><properties><web.work.model>normal</web.work.model><
  • 标签:文件 Java XML Maven

?

举例:项目读取pom文件路径的方法:

? ? pom文件内:<profiles>

   <profile>
      <id>development</id>
      <activation>
         <activeByDefault>true</activeByDefault>
      </activation>
      <properties>
         <web.work.model>normal</web.work.model>
         <config.root>D:/javaServer/opt/pay/config/basis/wenjianmulu</config.root><dbtype>oracle</dbtype>
      </properties>
   </profile>

</profiles>

?

?

<build>
   <resources>
      <resource>
         <directory>src/main/resources</directory>
         <filtering>true</filtering>
      </resource>
   </resources>
</build>

?

?

?

?

applicationContext.xml 文件中读取指定地址方法:

? ?<bean id="propertyConfigurer"

class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
   <property name="ignoreUnresolvablePlaceholders" value="true" />
   <property name="locations">
      <list>
         <value>file:${config.root}/xianyu-config-env.properties</value></list>
   </property>
</bean>

?

?

(文件目录自定义

以上,applicationContext.xml 就能读取pom里边的值了

?

?

?

?

?

?

?

?

?

?

?

?

发表评论
用户名: 匿名