标签:
1、新建web项目来加载spring
webapplicationcontext是专门为web应用准备,它允许从相对于web根目录的路径中装载配置文件,完成初始化操作。从webapplicationcontext中可以获得servletcontext的引用。
<!-- 声明自动启动的servlet --> <servlet> <servlet-name>springContextLoaderServlet</servlet-name> <servlet-class>org.springframework.web.context.ContextLoaderServlet</servlet-class> <!-- 启动顺序 --> <load-on-startup>1</load-on-startup> </servlet>
方式二:web容器监听器
<!-- 声明web容器监听器 --> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener>
<!-- 配置Spring的用于初始化容器对象的监听器方式来初始化webapplicationcontext --> <context-param> <param-name>contextConfigLocation</param-name> <!-- <param-value>/WEB-INF/applicationContext.xml</param-value> --> <param-value>classpath:applicationContext*.xml</param-value> </context-param> <!-- 声明web容器监听器 --> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener> <welcome-file-list> <welcome-file>index.jsp</welcome-file> </welcome-file-list> </web-app>
Spring学习笔记2——web项目初始化webapplicationcontext
标签:
原文地址:http://www.cnblogs.com/godlikefei/p/4304367.html