我在 Spring 应用程序上下文中有以下配置。
<bean class="org.springframework.context.support.PropertySourcesPlaceholderConfigurer">
<property name="props">
<list>
<value>file://${user.home}/myConfig.properties</value>
</list>
</property>
</bean>
假设我想直接在 jsp 中显示定义为 myConfig.properties 文件中的属性的值(例如:app.url.secret)。我怎样才能做到这一点?
在此先感谢您的帮助