Servlet doGet() doPost() 方法

发布于 2024-11-05 01:39:32 字数 244 浏览 1 评论 0原文

一般我们在HTML代码中指定doGetdoPost,这样servlet就会相对于HTML代码中的调用来调用这些方法。

有没有办法让我们调用 doPost 还是 doGet Servlet doPost 方法都会被调用?

我知道有一种方法可以在 doGet 中调用 doPost 方法,但除此之外还有其他方法吗?

Generally we specify the doGet and doPost in our HTML code, so that servlet will invoke these methods with respect to the call in HTML code.

Is there any way that whether we call doPost or doGet Servlet doPost method will get called?

I know there is one way that in doGet we can call doPost method , But apart from that is there any other method .

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

夏见 2024-11-12 01:39:32

从另一个方法调用一个方法,或者更好 - 从两个方法调用第三种方法是最好的方法。

您也可以重写 service() 方法,但其中还有更多您可能不想丢失的代码。

Calling one from the other, or better - calling a 3rd method from both is the best approach.

You can override the service() method as well, but there's more code there that you might not want to loose.

深海少女心 2024-11-12 01:39:32

您可以创建一个通用方法并将其放入 doGet() 或 doPost() 中。

protected void processRequest(HttpServletRequest request,HttpServletResponse response)
throws ServletException, IOException {
} 

@Override
protected void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
    processRequest(request, response);
} 

@Override
protected void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
    processRequest(request, response);
}

You can create a common method and put it into doGet() or doPost().

protected void processRequest(HttpServletRequest request,HttpServletResponse response)
throws ServletException, IOException {
} 

@Override
protected void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
    processRequest(request, response);
} 

@Override
protected void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
    processRequest(request, response);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文