目录
一:HttpServlet源码分析
1、HttpServlet类是专门为HTTP协议准备的,比GenericServlet更加适合HTTP协议下的开发
HttpServlet在哪个包下?
jakarta.servlet.http.HttpServlet
到目前为止接触了servlet规范中哪些接口?
jakarta.servlet.Servlet 核心接口(接口)
jakarta.servlet.ServletConfig Servlet 配置信息接口(接口)
jakarta.servlet.ServletContext Servlet 上下文接口(接口)
jakarta.servlet.ServletRequest Servlet请求接口(接口)
jakarta.servlet.ServletResponse Servlet响应接口(接口)
jakarta.servlet.ServletException Servlet异常(类)
jakarta.servlet.GenericServlet 标准通用的Servlet类(抽象类)
http包下都有哪些类和接口呢?jakarta.servlet.http.*;
jakarta.servlet.http.HttpServlet (HTTP协议专用的Servlet类,抽象类)
jakarta.servlet.http.HttpServletRequest (HTTP协议专用的请求对象)
jakarta.servlet.http.HttpServletResponse (HTTP协议专用的响应对象)
HttpServletRequest对象中封装了什么信息?
HttpServletRequest,简称request对象。
HttpServletRequest中封装了请求协议(例如:GET请求和POST请求)的全部内容。
Tomcat服务器(WEB服务器)将“请求协议”中的数据全部解析出来,然后将这些数据全部封装到request对象当中了。
也就是说,我们只要面向HttpServletRequest,就可以获取请求协议中的数据。
HttpServletResponse对象是专门用来响应HTTP协议到浏览器的。
2、 回顾Servlet生命周期
用户第一次请求
Tomcat服务器通过反射机制,调用无参数构造方法。创建Servlet对象。(web.xml文件中配置的Servlet类对应的对象。)
Tomcat服务器调用Servlet对象的init()方法完成初始化。
Tomcat服务器调用Servlet对象的service()方法处理请求。
用户第二次请求
Tomcat服务器调用Servlet对象的service方法处理请求。
用户第N次请求
Tomcat服务器调用Servlet对象的service方法处理请求。
服务器关闭
Tomcat服务器调用Servlet对象的destroy方法,做销毁之前的准备工作。
Tomcat服务器销毁Servlet对象。
3、根据Servlet生命周期进行HttpServlet源码分析
①用户第一次请求,会执行这个无参数构造方法,进行HelloServlet对象的创建
public class HelloServlet extends HttpServlet {
public HelloServlet() {
}
}
②HelloServlet子类没有提供init()方法,那么必然执行父类HttpServlet的init()方法。HttpServlet类中也没有init()方法,所以会继续执行GenericServlet类中的init()方法。
public abstract class GenericServlet implements Servlet, ServletConfig, Serializable {
// 用户第一次请求的时候,HelloServlet对象第一次被创建之后,这个init()方法会执行。
public void init(ServletConfig config) throws ServletException {
this.config = config;
this.init();
}
// 用户第一次请求的时候,带有参数的init(ServletConfig config)执行之后,会执行这个没有参数的 init()
public void init() throws ServletException {
// NOOP by default
}
}
③HelloServlet子类没有提供service()方法。那么必然执行父类HttpServlet类service()方法。
实际上HttpServlet是一个典型的模板类,带有Http的service()方法是一个模板方法
// 实际上HttpServlet是一个典型的模板类,下面带有HTPP参数的service()方法是模板方法。
public abstract class HttpServlet extends GenericServlet {
// 用户只要发送一次请求,这个service方法就会执行一次。
@Override
public void service(ServletRequest req, ServletResponse res)
throws ServletException, IOException {
HttpServletRequest request;
HttpServletResponse response;
try {
// 将ServletRequest和ServletResponse向下转型为带有Http的
// HttpServletRequest和HttpServletResponse
request = (HttpServletRequest)req;
response = (HttpServletResponse)res;
} catch (ClassCastException var6) {
throw new ServletException(lStrings.getString("http.non_http"));
}
// 调用重载的service()方法。
this.service(request, response);
}
// 下面这些就是重载的service()方法,这个service()方法的参数都是带有HTTP的
// 这个service()方法是一个模板方法。
// 在该方法中定义核心算法骨架,具体的实现步骤延迟到子类中去完成。
protected void service(HttpServletRequest req, HttpServletResponse resp)
throws ServletException, IOException {
// 调用getMethod()方法获取请求方式:GET POST PUT DELETE HEAD OPTIONS TRACE七种之一
String method = req.getMethod();
long lastModified;
// 如果请求方式是GET请求,则执行doGet方法
if (method.equals("GET")) {
lastModified = this.getLastModified(req);
if (lastModified == -1L) {
this.doGet(req, resp);
} else {
long ifModifiedSince;
try {
ifModifiedSince = req.getDateHeader("If-Modified-Since");
} catch (IllegalArgumentException var9) {
ifModifiedSince = -1L;
}
if (ifModifiedSince < lastModified / 1000L * 1000L) {
this.maybeSetLastModified(resp, lastModified);
this.doGet(req, resp);
} else {
resp.setStatus(304);
}
}
// 如果请求方式是HEAD请求,则执行doHead方法。
} else if (method.equals("HEAD")) {
lastModified = this.getLastModified(req);
this.maybeSetLastModified(resp, lastModified);
this.doHead(req, resp);
// 如果请求方式是POST请求,则执行doPost方法。
} else if (method.equals("POST")) {
this.doPost(req, resp);
// 如果请求方式是PUT请求,则执行doPut方法。
} else if (method.equals("PUT")) {
this.doPut(req, resp);
// 如果请求方式是DELETE请求,则执行doDelete方法。
} else if (method.equals("DELETE")) {
this.doDelete(req, resp);
// 如果请求方式是OPYIONS请求,则执行doOptions方法。
} else if (method.equals("OPTIONS")) {
this.doOptions(req, resp);
// 如果请求方式是TRACE请求,则执行doTrace方法。
} else if (method.equals("TRACE")) {
this.doTrace(req, resp);
} else {
String errMsg = lStrings.getString("http.method_not_implemented");
Object[] errArgs = new Object[]{method};
errMsg = MessageFormat.format(errMsg, errArgs);
resp.sendError(501, errMsg);
}
}
}
④我们编写的HelloServlet直接继承HttpServlet,直接重写HttpServlet类中带有Http参数的service()方法也可以,只不过享受不到405错误,享受不到HTTP协议专属的东西!
例:根据发送请求的而方式不同,就调用对应不同的方法,而不是直接重写整个的service()方法;假如前端发送的是GET请求
public class HelloServlet extends HttpServlet {
// 当前端发送的请求是get请求的时候,我这里重写doGet方法。
protected void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException{
PrintWriter out = response.getWriter();
out.print("<h1>doGet</h1>");
}
// 当前端发送的请求是post请求的时候,我这里重写doPost方法。
protected void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException{
PrintWriter out = response.getWriter();
out.print("<h1>doPost</h1>");
}
}
编写一个页面,里面有get请求和post请求
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>index page</title>
</head>
<body>
<h1>get请求</h1>
<a href="/servlet06/hello">hello(get请求)</a><br>
<h1>post请求</h1>
<form action="/servlet06/hello" method="post">
<input type="submit" value="hello">
</form>
</body>
</html>
假设前端发送了Get请求,但是后端重写的方法是一个doPost()方法就会报405错误,405表示前端的错误,发送的请求方式不对,和服务器不一致,不是服务器需要的请求方式。
为什么执行405错误,子类并没有重写doGet()方法,实际上就会调用父类HttpServlet的doGet()方法
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
String msg = lStrings.getString("http.method_get_not_supported");
// 报405错误是因为这一段代码
this.sendMethodNotAllowed(req, resp, msg);
}
tips:为了避免405错误,在Servlet类当中,将doGet和doPost方法都进行了重写;这样,确实可以避免405的发生,但是不建议,405错误还是有用的,该报错的时候就应该让他报错。如果是同时重写了doGet和doPost,还不如直接重写service方法,这样代码还能少写一点。
4、Servlet类最终的开发步骤:
第一步:编写一个Servlet类,直接继承HttpServlet
第二步:重写doGet方法或者重写doPost方法,到底重写谁,javaweb程序员说了算。
第三步:将Servlet类配置到web.xml文件当中。
第四步:准备前端的页面(form表单),form表单中指定请求路径即可。
定义一个LoginServlet类继承HttpServlet
package com.bjpowernode.javaweb.servlet;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.io.PrintWriter;
public class LoginServlet extends HttpServlet {
// 重写doPost方法
@Override
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
// 根据需求编写代码
response.setContentType("text/html");
PrintWriter out = response.getWriter();
out.print("<h1>登录成功...</h1>");
}
}
编写web.xml配置文件
<?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">
<servlet>
<servlet-name>login</servlet-name>
<servlet-class>com.bjpowernode.javaweb.servlet.LoginServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>login</servlet-name>
<url-pattern>/login</url-pattern>
</servlet-mapping>
</web-app>
编写一个页面表单 ,form表单中指定请求路径即可
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>login</title>
</head>
<body>
<form action="/servlet06/login" method="post">
<input type="submit" value="login">
</form>
</body>
</html>
启动Tomcat服务器,进行访问:http://localhost:8080/servlet06/login.html
二:web站点的欢迎页面
什么是一个web站点的欢迎页面?
对于一个webapp来说,是可以设置它的欢迎页面的。设置了欢迎页面之后,当访问这个webapp的时候,或者访问这个web站点的时候,没有指定任何“资源路径”,这个时候会默认访问你的欢迎页面。
一般的访问方式是:
http://localhost:8080/servlet06/login.html 指定了要访问的就是login.html资源。
如果访问的方式是:
http://localhost:8080/servlet06 如果访问的就是这个站点(不是具体的资源),没有指定具体的资源路径。默认会访问你设置的欢迎页面。
怎么设置整个站点的欢迎页面?
第一步:我在IDEA工具的web目录下新建了一个文件login.html
第二步:在web.xml文件中进行了以下的配置
<welcome-file-list> <welcome-file>login.html</welcome-file> </welcome-file-list>
注意:设置欢迎页面的时候,这个路径不需要以“/”开始,并且这个路径默认是从webapp的根下开始查找。
第三步:启动服务器,浏览器地址栏输入地址
①在web目录下创建login.html文件
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>login</title>
</head>
<body>
<h1>欢迎登入.....</h1>
</body>
</html>
②配置web.xml文件
<?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>login.html</welcome-file>
</welcome-file-list>
</web-app>
③启动Tomcat服务器,进行站点的访问
④一个webapp是可以设置多个欢迎页面的 ;越靠上的优先级越高,找不到的继续向下找。 例如:在创建一个具有多级目录(a/b/login.html)的欢迎页面;进行配置
<?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>login.html</welcome-file>
<welcome-file>a/b/login.html</welcome-file>
</welcome-file-list>
</web-app>
注意:当文件名设置为index.html的时候,不需要在web.xml文件中进行配置欢迎页面
这是因为小猫咪Tomcat服务器已经提前配置好了。
实际上配置欢迎页面有两个地方可以配置:
一个是在webapp内部的web.xml文件中(属于局部配置)
一个是在CATALINA_HOME/conf/web.xml文件中进行配置(属于全局配置)
<welcome-file-list> <welcome-file>index.html</welcome-file> <welcome-file>index.htm</welcome-file> <welcome-file>index.jsp</welcome-file> </welcome-file-list>
Tomcat服务器的全局欢迎页面是:index.html、index.htm、index.jsp。如果一个web站点没有设置局部的欢迎页面,Tomcat服务器就会以index.html、index.htm、index.jsp作为一个web站点的欢迎页面。
注意原则:局部优先原则(就近原则)。
欢迎页也可以是一个Servlet
欢迎页就是一个资源,既然是一个资源,那么可以是静态资源,也可以是动态资源
① 静态资源:index.html welcome.html …..
②动态资源:Servlet类
第一步: 写一个Servlet
package com.bjpowernode.javaweb;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.io.PrintWriter;
public class WelcomeServlet extends HttpServlet {
@Override
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
response.setContentType("text/html");
PrintWriter out = response.getWriter();
out.print("<h1>welcome to bjpowernode!</h1>");
}
}
第二步:在web.xml文件中配置servlet
<servlet>
<servlet-name>welcome</servlet-name>
<servlet-class>com.bjpowernode.javaweb.WelcomeServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>welcome</servlet-name>
<url-pattern>/welcome</url-pattern>
</servlet-mapping>
第三步:在web.xml文件中配置欢迎页
注意:不需要写项目名且路径不需要以“/”开始
<welcome-file-list>
<welcome-file>welcome</welcome-file>
</welcome-file-list>
补充:关于WEB-INF目录
通常都是在web的根目录下创建html文件,实际上是和WEB-INF目录同级的关系;如果在WEB-INF目录下新建了一个文件:welcome.html
打开浏览器访问:http://localhost:8080/servlet07/WEB-INF/welcome.html 发现出现了404错误。
结论:放在WEB-INF目录下的资源是受保护的。在浏览器上不能够通过路径直接访问。所以像HTML、CSS、JS、image等静态资源一定要放到WEB-INF目录之外。
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/128439.html