Archive for the ‘Spring’ Category
- In: Spring | Struts2
- Leave a Comment
There should be a PropertyHolder class
public class PropertyHolder {
String udiBaseURL;
public String getUdiBaseURL() {
return udiBaseURL;
}
public void setUdiBaseURL(String udiBaseURL) {
this.udiBaseURL = udiBaseURL;
}
}
And in applicaiton.properties file,
//entries for all properties
udi.viewer.url.base=http://udiviewer.qa.pwj.com
Then, In applicationContext.xml make an entry for the class and property file like below:
<bean id=”propertyConfigurer”>
<property name=”location” value=”/WEB-INF/application.properties” />
</bean>
<!– Local Data Holder –>
<bean id=”propertyHolder”>
<property name=”udiBaseURL” value=”${udi.viewer.url.base}” />
</bean>
thats it!!!
Advertisements