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

有什么方法可以将值从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>

提前致谢?

回答:

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

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

</bean>

然后使用以下属性:

<bean ...>

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

</bean>

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

以上是 Spring应用程序上下文:访问web.xml上下文参数? 的全部内容, 来源链接: utcz.com/qa/409053.html

回到顶部