首页 > 代码库 > 综合-----Web工程中启动Spring的三种方法
综合-----Web工程中启动Spring的三种方法
一、利用Spring 自带的Listener(推荐)
在web.xml中配置如下
<context-param> <!-- 名字固定 --> <param-name>contextConfigLocation</param-name> <!-- 值为Spring配置文件的路径 --> <param-value>/WEB-INF/classes/applicationContext.xml</param-value> <!-- <param-value>classpath:spring/applicationContext.xml</param-value> --> </context-param> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener>
二、利用Spring自带的 servlet
在web.xml中配置如下
<context-param> <!-- 名字固定 --> <param-name>contextConfigLocation</param-name> <!-- 值为Spring配置文件的路径 --> <param-value>/WEB-INF/classes/applicationContext.xml</param-value> <!-- <param-value>classpath:spring/applicationContext.xml</param-value> --> </context-param> <servlet> <!-- 名字固定 --> <servlet-name>context</servlet-name> <servlet-class>org.springframework.web.context.ContextLoaderServlet</servlet-class> <load-on-startup>1</load-on-startup> </servlet>
三、利用第三方WEB框架定义的<plug-in > 如:struts框架
在Struts的配置文件中配置如下
<plug-in className="org.springframework.web.struts.ContextLoaderPlugIn"> <set-property property="contextConfigLocation" value=http://www.mamicode.com/"/WEB-INF/classes/applicationContext.xml" />>
综合-----Web工程中启动Spring的三种方法
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。