how to fetch a value from persistence.xml to build.properties?

how to fetch a value from build.properties to persistence.xml?

  • In our project I need to fetch some values from build.properties to persistence.xml. Please let me know if there is any possible way?

  • Answer:

    For example: build.properties contains username = root password = shoot as properties then you could change the persistence.xml to have values like <username>@username@</username> <password value="@password@"/> then your build.xml should be something like this will work. <target name="replace"> <property file="build.properties"/> <replace file="persistence.xml" token="@username@" value="${username}"/> <replace file="persistence.xml" token="@password@" value="${password}"/> </target> Here $username and $password values are automatically identified by ant from the <property> tag and you could access values with key as a name.

user1340856 at Stack Overflow Visit the source

Was this solution helpful to you?

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.