在web.xml文件中启动
<!--使用应用上下文参数告诉spring启动的时候去解析指定的文件-->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:applicationContext.xml</param-value>
</context-param>
<!-- 让web容器去启动spring容器
使用监听的方式(上下文监听器),也就是应用一加载就运行这个监听器
-->
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listenner-class>
</listener>