是否执行或RequestDispatcher.forward使用GET或POST?

发布于 2024-10-06 09:10:36 字数 179 浏览 4 评论 0原文

问题在标题中: RequestDispatcher.forward 使用 GET 或 POST 来完成其任务吗?

如果它使用一个,我是否可以始终将其计算为该一个,或者这是否会因服务器而异?

谢谢大家!

The question is in the title: Does <jsp:forward> or RequestDispatcher.forward use GET or POST to do its thing?

If it uses one, can I always count it will be that one or can this vary from server to server?

Thank you all!

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

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

发布评论

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

评论(1

蓝梦月影 2024-10-13 09:10:36

两者都不;它直接在容器中查找 servlet 类,然后调用调度程序。

调度程序将检查请求的类型并调用适当的方法。因此,如果原始请求是 POST,则将调用 doPost()

Neither; it directly looks up the servlet class in your container and then calls the dispatcher.

The dispatcher will examine the type of the request and call the appropriate method. So if the original request was POST, doPost() will be called.

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