使用maven pom导出xml文件中的值

时间:2015-04-23 15:14:26

标签: xml maven database-connection

有人可以告诉我是否可以将maven pom.xml中的值导出到其他xml文件。我试过这种方式,但它没有用。

的pom.xml

<properties>
    <database.url>jdbc:mysql://localhost:3306/test</database.url>
</properties>

OtherFile.xml

<database id="prod_db" url="${database.url}" driver="com.mysql.jdbc.Driver" user="a" password="b" />

xml文件无法理解是什么。

1 个答案:

答案 0 :(得分:0)

使用Pom文件语法将包含xml文件的文件夹设为资源文件夹,并确保将过滤设置为true。

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