码迷,mamicode.com
首页 > Web开发 > 详细

web.xml中servlet配置及其含义

时间:2019-01-13 20:26:27      阅读:244      评论:0      收藏:0      [点我收藏+]

标签:xsd   映射   访问   att   location   sch   servlet   1.0   tomcat服务器   

 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即可。

web.xml中servlet配置及其含义

标签:xsd   映射   访问   att   location   sch   servlet   1.0   tomcat服务器   

原文地址:https://www.cnblogs.com/q-1993/p/10263791.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!