Servlet
作者:互联网
Java类必须符合一定的 规范:
a.必须继承 javax.servlet.http.HttpServlet
b.重写其中的 doGet()或doPost()方法
- doGet(): 接受 并处 所有get提交方式的请求
- doPost():接受 并处 所有post提交方式的请求
Servlet要想使用,必须配置
- Serlvet2.5:web.xml
- Servlet3.0:@WebServlet
Serlvet2.5:web.xml:
项目的根目录:WebContent 、src
<a href="WelcomeServlet">所在的jsp是在 WebContent目录中,因此 发出的请求WelcomeServlet 是去请求项目的根目录。
Servlet流程:
请求 ==><url-pattern> ==> 根据<servlet-mapping>中的<servlet-name> 去匹配 <servlet> 中的<servlet-name>,然后寻找到<servlet-class>,求中将请求交由该<servlet-class>执行。
2个/:
- jsp:/ localhost:8888
- web.xml: / http://localhost:8888/项目名/
标签:xml,web,请求,WebContent,根目录,Servlet 来源: https://www.cnblogs.com/stu-jyj3621/p/14411365.html