我想知道弹簧容器实际上是如何在服务器上加载的......以及有多少种方法可以完成 以及服务器如何知道它必须启动弹簧容器。 我试着去谷歌,但没有运气。
答案 0 :(得分: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>