Hello,
I need to store some configuration parameters for a web application that uses spring framework.
Typically I'll use a configurationfile.properties file but i wonder if i can store that values in the applicationContext.xml file.
One workaround could be to create a JavaBean class to store the values, and build that class using spring, something like this:
<bean id="configurationBean" class="mypackage.someClass">
<property name="confValue1">
<value>myValue1</value>
</property>
....
</bean>
But i would like to know if is there a way to store those parameters without the needing to create that class.
Thanks in advance.