Servlet生命周期中的service方法分析

问题
ServletLifeCycle中的service方法内,有super.service(request, response); 会执行this.doGet(HttpServletRequest request, HttpServletResponse response);
没有super.service(request, response);,则不执行this.doGet(...). 是怎么实现的?

举一反三:
一个子类,覆写的方法内,如果调用了父类的该方法,会执行子类内的另一个方法;
覆写的方法内,如果没有调用父类的该方法,就不会执行子类内的另一个方法;

分析 ----->符号是关键注释

  1 public class ServletLifeCycle extends HttpServlet {
  2     private static final long serialVersionUID = 1L;
  3     
  4     @Override
  5     public void service(ServletRequest request, ServletResponse response) throws ServletException, IOException {
  6         // TODO Auto-generated method stub
  7         //this.doGet((HttpServletRequest)request, (HttpServletResponse)response);
  8         super.service(request, response);//------------------->执行父类的service(ServletRequest request, ServletResponse response)方法
  9          
 10         System.out.println("处理客户端请求");
 11     }
 12 
 13     protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
 14         // TODO Auto-generated method stub
 15         System.out.println("处理过程");
 16         response.getWriter().append("Served at: ").append(request.getContextPath());
 17     }
 18 
 19 }
 20 
 21 
 22 
 23 
 24 public abstract class HttpServlet extends GenericServlet {
 25 public void service(ServletRequest req, ServletResponse res)
 26     throws ServletException, IOException {
 27 
 28     HttpServletRequest  request;
 29     HttpServletResponse response;
 30 
 31     try {
 32         request = (HttpServletRequest) req;
 33         response = (HttpServletResponse) res;
 34     } catch (ClassCastException e) {
 35         throw new ServletException("non-HTTP request or response");
 36     }
 37     service(request, response);//------------------->父类的方法的重载执行父类的service(HttpServletRequest request, HttpServletResponse response)方法
 38     //------------------->我的理解是,如果没有重载,会出现死循环.   走到此处又执行子类ServletLifeCycle的service方法,子类又调用父类service方法,循环嵌套.
 39 }
 40 
 41 
 42 protected void service(HttpServletRequest req, HttpServletResponse resp)
 43         throws ServletException, IOException {
 44 
 45         String method = req.getMethod();
 46 
 47         if (method.equals(METHOD_GET)) {
 48             long lastModified = getLastModified(req);
 49             if (lastModified == -1) {
 50                 // servlet doesn't support if-modified-since, no reason
 51                 // to go through further expensive logic
 52                 doGet(req, resp);//------------------->调用子类ServletLifeCycle的doGet方法
 53             } else {
 54                 long ifModifiedSince;
 55                 try {
 56                     ifModifiedSince = req.getDateHeader(HEADER_IFMODSINCE);
 57                 } catch (IllegalArgumentException iae) {
 58                     // Invalid date header - proceed as if none was set
 59                     ifModifiedSince = -1;
 60                 }
 61                 if (ifModifiedSince < (lastModified / 1000 * 1000)) {
 62                     // If the servlet mod time is later, call doGet()
 63                     // Round down to the nearest second for a proper compare
 64                     // A ifModifiedSince of -1 will always be less
 65                     maybeSetLastModified(resp, lastModified);
 66                     doGet(req, resp);
 67                 } else {
 68                     resp.setStatus(HttpServletResponse.SC_NOT_MODIFIED);
 69                 }
 70             }
 71 
 72         } else if (method.equals(METHOD_HEAD)) {
 73             long lastModified = getLastModified(req);
 74             maybeSetLastModified(resp, lastModified);
 75             doHead(req, resp);
 76 
 77         } else if (method.equals(METHOD_POST)) {
 78             doPost(req, resp);
 79 
 80         } else if (method.equals(METHOD_PUT)) {
 81             doPut(req, resp);
 82 
 83         } else if (method.equals(METHOD_DELETE)) {
 84             doDelete(req, resp);
 85 
 86         } else if (method.equals(METHOD_OPTIONS)) {
 87             doOptions(req,resp);
 88 
 89         } else if (method.equals(METHOD_TRACE)) {
 90             doTrace(req,resp);
 91 
 92         } else {
 93             //
 94             // Note that this means NO servlet supports whatever
 95             // method was requested, anywhere on this server.
 96             //
 97 
 98             String errMsg = lStrings.getString("http.method_not_implemented");
 99             Object[] errArgs = new Object[1];
100             errArgs[0] = method;
101             errMsg = MessageFormat.format(errMsg, errArgs);
102 
103             resp.sendError(HttpServletResponse.SC_NOT_IMPLEMENTED, errMsg);
104         }
105     }
106 
107 
108 protected void doGet(HttpServletRequest req, HttpServletResponse resp)
109     throws ServletException, IOException
110 {
111     String protocol = req.getProtocol();
112     String msg = lStrings.getString("http.method_get_not_supported");
113     if (protocol.endsWith("1.1")) {
114         resp.sendError(HttpServletResponse.SC_METHOD_NOT_ALLOWED, msg);
115     } else {
116         resp.sendError(HttpServletResponse.SC_BAD_REQUEST, msg);
117     }
118 }
119 }

 

转载于:https://www.cnblogs.com/ICE_Inspire/p/5150170.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/289353.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

linux之ubunt把启动栏底部和左边切换

1 把启动栏移动到底部 gsettings set com.canonical.Unity.Launcher launcher-position Bottom 2 把启动栏移动到左边 gsettings set com.canonical.Unity.Launcher launcher-position Left

xhr get获取文件流下载文件_python爬虫实战——豆瓣电影get初体验

影评许可证公众号[2019]第22期本栏目由“数据皮皮侠”独家呈献专场python爬虫实战——豆瓣电影get初体验2019.10.28 / 早上7点场 / 免费本期“栏目”的四大看点&#xff1a;1 如何爬取2 如何解析与提取3 如何解析json数据4 实战&#xff1a;爬取豆瓣影视信息1 如何爬取how to O…

Visual Studio与C#编程十个实用技巧

如果你通过搜索引擎发现这篇文章的,我建议你先看看本系列的 第一篇 ,这是本系列文章的第二篇,今天为大家带来更丰富的C#和Visual Studio编程技巧,一起来看看吧。 1、DataTable.HasRows 它不属于任何框架,但通过扩展方法很容易模仿这样一个方法,它不会消除检查数据表对象…

商丘高中计算机考试成绩查询系统,2019商丘中考招生成绩查询时间及网站公布...

成绩发布&#xff1a;今年中招成绩满分仍为700分。7月8日&#xff0c;公布中招成绩。考生可以通过“商丘便民网”及手机APP客户端进行查询&#xff0c;也可以登陆省中招平台(http&#xff1a;//zk.haedu.gov.cn)和商丘市基础教育公共服务平台(http&#xff1a;//www.sqsedu.net…

【好程序员笔记分享】C语言之break和continue

ios培训------我的c语言笔记&#xff0c;期待与您交流! #include <stdio.h> /*break:1.使用场合1> switch语句&#xff1a;退出整个switch语句2> 循环结构&#xff1a;退出整个循环语句* while* do while* for2.注意点只对最近的循环结构有效 continue&#xff1a;…

双时隙的工作原理_OFDM调制技术原理是什么 OFDM调制实现原理介绍【图文】

无线通讯OFDM调制技术原理简介OFDM是现代宽带无线通信系统应用的技术。为了减少高数据率OFDM系统中各信道间影响带来的失真&#xff0c;引入循环前缀(CP)来消除码间干扰(ISI)。它将一个IFFT包的最后部分复制到OFDM符号序列的前端。注意&#xff0c;CP的长度必须长于色散信道的长…

Windows 11 新版 22593 发布:文件资源管理器全新主页,开始菜单图标优化

面向 Dev 和 Beta 频道的 Windows 预览体验成员&#xff0c;微软现已发布 Windows 11 预览版 Build 22593。主要变化1.微软为 Windows 11 文件资源管理器引入了全新的主页功能&#xff0c;集成了快速访问、收藏夹和最近使用的文件。2.Windows 11 “开始”菜单文件夹中的应用程序…

2015年最弱的密码,和最强的密码

网络安全公司SplashData如约发布了本年度最不安全的密码排行榜。这是他们连续第五年做这件事了。 根据2015年从各个渠道泄露出来的密码信息&#xff0c;最弱的密码被“123456”再次蝉联。这个“万年陈酿”的密码排名第一感觉毫无压力。 夺得第二名的是“password”。中国用户似…

FastDFS 安装

FastDFS&#xff08;centerOs&#xff09; 安装包:FastDFS_v5.07.tar libfastcommon-master.zip(是从 FastDFS 和 FastDHT 中提取出来的公共 C 函数库) // https://github.com/happyfish100/libfastcommonfastdfs-nginx-module_v1.16.tar.gz // https://github.com/happyfish10…

Android之android.system.ErrnoException: open failed: ENOENT (No such file or directory)

1 问题 在sdcard目录下面创建了一个文件提示下面的错误 android.system.ErrnoException: open failed: ENOENT (No such file or directory) 2 分析 错误代码是如下 String path = Environment.getExternalStorageDirectory().getAbsolutePath();try {File dir = new File(p…

ideaspringboot项目上传服务器_nuxt+pm2 自动化部署及打包后文件自动上传阿里云 oss

在读这篇文档时&#xff0c;希望你对 nuxt 及 pm2&#xff0c;有简单的了解nuxtpm2前期准备安装 pm2 及构建 nuxt$ npm i pm2 -g $ npx create-nuxt-app <项目名>ssh 密钥配置pm2 代码自动发布依赖于 git 工具&#xff0c;先将 ssh 密钥配置再你的代码仓库&#xff08;gi…

计算机一级b和小高考,2021年小高考B是几分相关内容

《2021年小高考B是几分相关内容》由会员分享&#xff0c;可在线阅读&#xff0c;更多相关《2021年小高考B是几分相关内容(3页珍藏版)》请在人人文库网上搜索。1、小高考B是几分相关内容 小高考专指普通高中学业水平考试&#xff0c;因为与大学录取直接挂钩&#xff0c;所以被称…

Nginx配置文件详细说明(转)

在此记录下Nginx服务器nginx.conf的配置文件说明, 部分注释收集与网络. #运行用户user www-data; #启动进程,通常设置成和cpu的数量相等worker_processes 1; #全局错误日志及PID文件error_log /var/log/nginx/error.log;pid /var/run/nginx.pid; #工作模式及连接数…

运营推广的一些方法

1、技术操作维度&#xff1a;ASO&#xff0c;SEO&#xff0c;ASO简单介绍&#xff1a;http://baike.baidu.com/subview/1368976/9766740.htmSEO学习&#xff1a;《SEO实战密码》https://book.douban.com/subject/5348144/ 《SEO艺术》https://book.douban.com/subject/1054613…

wait放弃对象锁_Java线程中wait、await、sleep、yield、join用法总结

一、wait()、notify()、notifyAll()用法obj.wait()/obj.wait(long timeout)是Object中的方法&#xff0c;当线程调用wait()方法&#xff0c;当前线程释放对象锁&#xff0c;进入等待队列。obj.notify()/obj.nogifyAll()是Object中的方法&#xff0c;唤醒在此对象上wait()的单个…

10个C#编程和Visual Studio使用技巧

摘要:C#是一门伟大的编程语言,与C++和Java相比,它的语法更简单,相对来说更好入门。Visual Studio作为.Net平台上最重量级的IDE,也通过不断的更新为开发者带来更出色的开发体验。本文将介绍10个C#编程和Visual Studio IDE使用技巧。

AspNet Core 6.0 Json写默认首字母小写(camelCase)问题

最近在把旧项目迁移到.net core6.0时遇到了之前一样的问题&#xff1a;框架返回的json序列化时将原来的首字母大写的字段统统转成了首字母小写的小驼峰命名&#xff0c;导致原来写好的前端数据无法正确渲染。于是上网找了下取消该默认行为的方法&#xff0c;在Startup.cs中添加…

学习总结——Selenium元素定位

读一本好书&#xff0c;不能读读就算了&#xff0c;做一下总结&#xff0c;变成自己的&#xff0c;以备查阅。 1. driver.findElement(By.id(<element ID>)) ID是独一无二的&#xff0c;使用ID定位是最为推荐的方法。 但是&#xff1a;1.不是所有元素都会指定ID&…

open ssl里面的自定义get***函数失效

1 问题 在open ssl加载引起里面部分我自己写了一个get和set方法,然后我在其它地方调用使用了Info类型的声明 extern Info info; 先初始化info,然后 info->setA(&info, value); char value[100]; 但是我立马 info->getA(&info, value, sizeof(value)); LOGI(…

计算机在现代商业中的作用,现代商业中计算机web数据挖掘技术的应用

[摘 要] 随着科技水平的不断提高&#xff0c;各种高科技设备辅助互联网将数字化、信息化的方法和手段运用到了各行各业之中&#xff0c;尤其在现代商业中&#xff0c;国际化、全球化的市场规模使得信息的处理工作极为庞大&#xff0c;需要更多的依赖计算机技术来完成。Web数据挖…