Day41——Spring提供的监听器_ContextLoaderListener

你。 提交于 2020-02-09 13:59:07

一. 知识储备

在web.xml中按代码提示快捷键,找到ContextLoaderListener,按Enter键,代码如下:

<!-- Spring提供的监听器 -->
   <!-- needed for ContextLoaderListener -->
	<context-param>
		<param-name>contextConfigLocation</param-name>
		<param-value>classpath:applicationContext.xml</param-value>
	</context-param>
	<!-- Bootstraps the root web application context before servlet initialization -->
	<listener>
		<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
	</listener>
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!