一尘不染

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

spring

有什么方法可以将值从web.xml context-param转换为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>

提前致谢?


阅读 427

收藏
2020-04-18

共1个答案

一尘不染

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

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

然后使用以下属性:

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

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

2020-04-18