I have the following configuration in Spring application context.
<bean class="org.springframework.context.support.PropertySourcesPlaceholderConfigurer">
<property name="props">
<list>
<value>file://${user.home}/myConfig.properties</value>
</list>
</property>
</bean>
let's say I want to display a value (e.g : app.url.secret) defined as a property in the myConfig.properties file, directly in a jsp. How can I achieve that ?
thanks in advance for your help