JavaWeb-配置文件(web.xml)

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

<!--自动生成-->

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

<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"

xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"

version="4.0">

     

     

        <!--首页-->

        <welcome-file-list>

                <welcome-file>首页地址</welcome-file>

                <!--可有多个,一般为index.html, index.jsp, index.php-->

        </welcome-file-list>

            

            

        <!--jsp的配置-->

            

        <!--servlet的配置-->

            

        <!--可有多个配置对儿(servlet/servlet-mapping)-->

            

</web-app>

     

    

猜你喜欢

转载自www.cnblogs.com/AlMirai/p/12526286.html