春季应用程序上下文:访问web.xml上下文参数?

2022-09-03 13:08:33

问候

有没有办法将值从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>

提前致谢?


答案 1

Yes - ServletContextPropertyPlaceholderConfigurer

本文将介绍详细信息。简而言之,您需要:

<bean class="org.springframework.web.context.support.ServletContextPropertyPlaceholderConfigurer">
</bean>

,然后使用如下属性:

<bean ...>
   <property name="compassIndex" value="${compass-index}" />
</bean>

或与@Value("${compass-index}")


答案 2

推荐