<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
<display-name>Myweb2</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
<servlet>
<servlet-name>demo1</servlet-name> <!--类名 -->
<servlet-class>com.xc.demo1</servlet-class><!-- 具体被执行的了类 -->
</servlet>
<servlet-mapping>
<servlet-name>demo1</servlet-name> <!--与上面相同 -->
<url-pattern>/web1</url-pattern><!--映射名 访问路径 -->
</servlet-mapping>
</web-app>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
<display-name>Myweb2</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
<servlet>
<servlet-name>demo1</servlet-name> <!--类名 -->
<servlet-class>com.xc.demo1</servlet-class><!-- 具体被执行的了类 -->
</servlet>
<servlet-mapping>
<servlet-name>demo1</servlet-name> <!--与上面相同 -->
<url-pattern>/web1</url-pattern><!--映射名 访问路径 -->
</servlet-mapping>
</web-app>