首页 > 代码库 > 综合-----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的三种方法