在整个容器和组件初始化完成以后,如果有请求进入,request 则会进入 service()
方法进入分发并解析,整个过程需要之前注册的 HandlerAdapter、HandlerMapping 等进行处理并获取 ModelAndView,并且如果上传的是文件,也会在这个过程中处理。
主要代码:FrameworkServlet#service()
所有的请求都是会进入 FrameworkServlet 的 service()
方法来区分是什么类型的请求,并且根据这些请求的方法来分别调用不同的方法处理。
@Override
protected void service(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
// 判断当前请求使用的方法是什么
HttpMethod httpMethod = HttpMethod.resolve(request.getMethod());
if (httpMethod == HttpMethod.PATCH || httpMethod == null) {
// 直接处理请求
processRequest(request, response);
}
else {
// 如果是其他方法的请求,则会调用父级的 service 进行请求分类并转发
super.service(request, response);
}
}
主要代码:HttpServlet#service()
在 HttpServlet 中原生的 service()
会判断 request 中的请求方法是什么类型,比如如果是 GET 方法,则会调用 doGet()
方法,其他同理。
protected void service(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
// 获取请求方法
String method = req.getMethod();
long lastModified;
// 根据不同的请求调用不同的方法
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);
}
}
} else if (method.equals("HEAD")) {
lastModified = this.getLastModified(req);
this.maybeSetLastModified(resp, lastModified);
this.doHead(req, resp);
} else