1

我想知道 spring 容器实际上是如何加载到服务器上的。以及有多少种方法可以完成,以及服务器究竟是如何知道它必须启动 spring 容器的。我试图用谷歌搜索它,但没有运气。

4

1 回答 1

1

最简单的解决方案是使用ContextLoaderListener

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

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

有关详细信息,请参阅http://static.springsource.org/spring/docs/4.0.x/spring-framework-reference/html/web-integration.html

于 2013-08-18T11:59:16.380 回答