调度程序转发方法从 POST 到 GET
我需要从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设 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 fromBarServlet
in order to convey some insight into the server's view on things, and to avoid unintended re-POSTs, and so on.