Wednesday, July 10, 2013

SpringMVC : Read property values from jsp

Spring config

 <util:properties id="propertyConfigurer" 
                      location="classpath:yourPropertyFileClasspathHere "/>
<context:property-placeholder properties-ref="propertyConfigurer" />

jsp

    <spring:eval expression="@propertyConfigurer.getProperty('propertyNameHere')" />

No comments:

Post a Comment