1
13693261870
2022-09-16 51a52790d78a642ae2b81d33922754b506adef08
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1">
  <!-- 此处添加 absolute-ordering 标签 -->
  <!--  <absolute-ordering/>-->
 
  <display-name>cas</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>generateVcode</servlet-name>
    <servlet-class>myUtils.GenerateVcodeServlet</servlet-class>
  </servlet>
  <servlet-mapping>
    <servlet-name>generateVcode</servlet-name>
    <url-pattern>/servlet/gevcode</url-pattern>
  </servlet-mapping>
</web-app>