春季应用程序上下文:访问web.xml上下文参数?
问候
有没有办法将值从web.xml上下文参数获取到Spring上下文中?
例如,我将 web.xml 中的值定义为:
<context-param>
<param-name>compass-index</param-name>
<param-value>file:///home/compass/index</param-value>
</context-param>
我想将该值分配给bean属性::
<bean ...>
<props>
<prop key="compass.engine.connection">
${from web.xml context-param?}
</prop>
</props>
</bean>
提前致谢?