web.xml中Servlet3.1版本的头信息格式

 1 <?xml version="1.0" encoding="UTF-8"?>
 2 <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 3       xmlns="http://xmlns.jcp.org/xml/ns/javaee"
 4       xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee 
 5                   http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
 6       id="WebApp_ID" version="3.1">
 7 
 8   <display-name>website name</display-name>
 9 
10   <welcome-file-list> 11     <welcome-file>index.html</welcome-file> 12     <welcome-file>index.jsp</welcome-file> 13   </welcome-file-list> 14 15 </web-app>

 

posted @ 2018-11-17 18:49  Schiller_Hu  阅读(1003)  评论(0编辑  收藏  举报