关于web.xml
在Java Web项目中,web.xml文件是用来初始化配置信息:比如欢迎页、servlet、servlet-mapping、filter、listener、启动加载级别等。
这个标准是sun公司设计的,容器通过配置文件web.xml找相应的servlet这样有助于灵活和可维护性。
每个xml文件都有定义它书写规则的Schema文件,这些规则是在 文档类型定义(Document Type Definition,DTD)或模式(schema )中定义的。
javaEE的定义web.xml所对应的xml Schema文件中定义了多少种标签元素,web.xml中就可以出现它所定义的标签元素,也就具备哪些特定的功能。
web.xml的模式文件是由Sun 公司定义的,每个web.xml文件的根元素为<web-app>中,必须标明这个web.xml使用的是哪个模式文件。
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" >
</web-app>
在web.xml中配置加载dispatcher-servlet.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!-- spring mvc 也是基于servlet的 -->
<!-- 添加spring3控制器及映射规则 -->
<
servlet
>
<!-- 默认为WEB-INF目录下,名称为[<servlet-name>]-servlet.xml的配置文件 -->
<
servlet-name
>springmvc</
servlet-name
>
<
servlet-class
>org.springframework.web.servlet.DispatcherServlet</
servlet-class
>
<!-- 也可以使用<init-param/>标签自定义servlet.xml配置文件的位置和名称-->
<
init-param
>
<
description
>加载custom-servlet.xml作为Spring MVC的配置文件</
description
>
<
param-name
>contextConfigLocation</
param-name
>
<
param-value
>classpath:custom-servlet.xml</
param-value
>
</
init-param
>
<
load-on-startup
>1</
load-on-startup
>
</
servlet
>
|