力所能及之spring web.xml配置

来源:互联网 发布:联想电脑数据恢复 编辑:程序博客网 时间:2024/05/20 21:52
<?xml version="1.0" encoding="UTF-8"?><web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"> <!-- Spring配置 -->      <listener>          <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>    </listener>        <!-- 指定Spring Bean的配置文件所在目录。默认配置在WEB-INF目录下 -->      <context-param>          <param-name>contextConfigLocation</param-name>          <param-value>WEB-INF/classes/applicationContext.xml</param-value>      </context-param>    <welcome-file-list>    <welcome-file>index.jsp</welcome-file>  </welcome-file-list></web-app>


0 0