是否执行或RequestDispatcher.forward使用GET或POST?
问题在标题中:
或 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
两者都不;它直接在容器中查找 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.