转载

java – servlet doGet和doPost方法

参见英文答案 > 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

原文  https://codeday.me/bug/20190110/513287.html
正文到此结束
Loading...