内容简介:简单地说,就是使servlet一般化,这样即使我们将来更改请求方法,也不需要编辑servlet,这将减少将来修改应用程序的工作量.翻译自:https://stackoverflow.com/questions/9148399/servlet-doget-and-dopost-methods
参见英文答案 > doGet and doPost in Servlets 5个
我想知道在servlet中为什么我们在同一个程序中一起使用doGet和doPost方法.有什么用?
以下代码的含义是什么?
为什么要从doPost调用doGet方法?我对这段代码一点也不清楚.
public class Info extends HttpServlet { public void doGet(HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException { } public void doPost(HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException { doGet(request, response); } }
谢谢
简单地说,就是使servlet一般化,这样即使我们将来更改请求方法,也不需要编辑servlet,这将减少将来修改应用程序的工作量.
翻译自:https://stackoverflow.com/questions/9148399/servlet-doget-and-dopost-methods
以上所述就是小编给大家介绍的《java – servlet doGet和doPost方法》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:- 理解实例方法、类方法、静态方法
- 【MyBatis源码分析】insert方法、update方法、delete方法处理流程(上篇)
- 【MyBatis源码分析】insert方法、update方法、delete方法处理流程(上篇)
- java:方法覆盖与方法重载
- 静态方法、实例化方法与线程安全
- JS数组方法总览及遍历方法耗时统计
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Understanding Machine Learning
Shai Shalev-Shwartz、Shai Ben-David / Cambridge University Press / 2014 / USD 48.51
Machine learning is one of the fastest growing areas of computer science, with far-reaching applications. The aim of this textbook is to introduce machine learning, and the algorithmic paradigms it of......一起来看看 《Understanding Machine Learning》 这本书的介绍吧!