web.xml中servlet配置及其含義


 1 <?xml version="1.0" encoding="UTF-8"?>
 2 <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
 3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 4          xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
 5          version="4.0">
 6   
 7     <servlet>
 8         <!--自定義,一般為類名-->
 9         <servlet-name>servletDemo1</servlet-name>
10         <!--一定是package + .類名-->
11         <servlet-class>day08_servlet.ServletDemo1</servlet-class>
12     </servlet>
13     <!--給Servlet提供(映射)一個可供客戶端訪問的URI-->
14     <servlet-mapping>
15         <!--和servlet中的name必須相同-->
16         <servlet-name>servletDemo1</servlet-name>
17         <!-- servlet的映射路徑 -->
18         <url-pattern>/servlet</url-pattern>
19     </servlet-mapping>
20     
21 </web-app>

  這里要注意的是servlet-mapping的url-pattern中的這個映射路徑 / 一定不能忘記!!!

  配置完成后,啟動tomcat服務器,然后在瀏覽器中輸入http://localhost:8080/servlet即可。

  補充:url-pattern: *.xxx  以*.字符串的請求都可以訪問 注:不要加/

       url-pattern: /*  任意字符串都可以訪問

       url-pattern: /xxx/* 以/xxx開頭的請求都可以訪問

  優先級從高到低:絕對匹配、/開頭匹配 、擴展名方式匹配


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM