调度程序转发方法从 POST 到 GET

发布于 2024-12-09 18:29:24 字数 148 浏览 0 评论 0原文

我需要从 FooServlet doPost 方法转发到 BarServlet doGet 方法。有办法解决这个问题吗?

目前我正在从 doPost 调用 doGet 方法,但我确信这不是最佳实践。

I need to forward from my FooServlet doPost method to BarServlet doGet method. Is there a way to solve this?

Currently I'm calling the doGet method from my doPost but I'm sure that this isn't the best practice.

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

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

发布评论

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

评论(1

悍妇囚夫 2024-12-16 18:29:24

假设 HTTP servlet 用于基于 Web 的使用,我建议使用 ServletResponse.sendRedirect(...)BarServlet 获取客户端请求服务,以便传达一些见解进入服务器对事物的看法,并避免意外的重新 POST 等。

Assuming HTTP servlets intended for web-based use, I would recommend a ServletResponse.sendRedirect(...) to have the client request service from BarServlet in order to convey some insight into the server's view on things, and to avoid unintended re-POSTs, and so on.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文