首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

web.xml加载spring的两种形式(servlet和listener)

2013-07-04 
web.xml加载spring的两种方式(servlet和listener)web-app version2.4 xmlnshttp://java.sun.com/xml

web.xml加载spring的两种方式(servlet和listener)
<web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee"
?xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
?xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee?
?http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">

?

?<listener>
??<listener-class>
???org.springframework.web.context.ContextLoaderListener
??</listener-class>
?</listener>
?<!--contextConfigLocation在 ContextLoaderListener类中的默认值是 /WEB-INF/applicationContext.xml-->
?<context-param>
??<param-name>contextConfigLocation</param-name>
??<param-value>/WEB-INF/classes/applicationContext.xml</param-value>
??<!-- <param-value>classpath:applicationContext*.xml</param-value> -->
?</context-param>

?<welcome-file-list>
??<welcome-file>index.jsp</welcome-file>
?</welcome-file-list>
</web-app>

热点排行