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
Related Q & A:
- How to return a value from .ashx file to javascript in a variable?Best solution by forums.asp.net
- How to modify a schema.xml of an existing list?Best solution by SharePoint
- how to parse a xml file using jquery and phonegap?Best solution by Stack Overflow
- How do I get a value from a JObject?Best solution by Stack Overflow
- How to convert a HTML file to XML file?Best solution by Stack Overflow
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
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.