web.xml文件中引入其它的xml文件

<?xml version="1.0" encoding="UTF-8"?>

 

<!-- 下面一行表示要引入的文件   servlet.xml表示的同一级目录 ,当然可以是绝对硬盘路径,也可以是相对的路径。-->

<!DOCTYPE web-app [<!ENTITY servlet SYSTEM "servlet.xml">]> 

 

<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">

 

  <welcome-file-list>

    <welcome-file>index.jsp</welcome-file>

  </welcome-file-list>

 

  <!-- 表示引入文件在xml中的位置 -->

  &servlet;

  

  

  

</web-app>

 

你可能感兴趣的:(web.xml)