小编典典

使用web.xml在Spring中加载上下文

java

在SpringMVC应用程序中,有没有一种方法可以使用web.xml加载上下文?


阅读 348

收藏
2020-03-21

共1个答案

小编典典

Spring可以轻松集成到任何基于Java的Web框架中。你需要做的就是在web.xml中声明ContextLoaderListener并使用contextConfigLocation 设置要加载的上下文文件。

<context-param>:

<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>/WEB-INF/applicationContext*.xml</param-value>
</context-param>

<listener>
   <listener-class>
        org.springframework.web.context.ContextLoaderListener
   </listener-class>
</listener> 

然后,你可以使用WebApplicationContext来获取bean的句柄。

WebApplicationContext ctx = WebApplicationContextUtils.getRequiredWebApplicationContext(servlet.getServletContext());
SomeBean someBean = (SomeBean) ctx.getBean("someBean");
2020-03-21