我想知道 spring 容器实际上是如何加载到服务器上的。以及有多少种方法可以完成,以及服务器究竟是如何知道它必须启动 spring 容器的。我试图用谷歌搜索它,但没有运气。
问问题
737 次
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>
于 2013-08-18T11:59:16.380 回答