How to use property from property file specified in PropertyPlaceholderConfigurer in JSP

Viewed 27085

In my application context I have defined properties file:

<context:property-placeholder  location="classpath:application.properties" />

I want to get value of the property defined in that file on JSP page. Is there a way to do that in the way

${something.myProperty}?
6 Answers
Related