This question already has answers here:
doGet and doPost in Servlets

(5个答案)


4年前关闭。




我想知道为什么在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,这将减少将来修改应用程序的工作量。

07-26 05:17