从 jsps 翻译过来的 servlet 中的 doGet() 和 doPost() 方法在哪里
在从 jsps 翻译的 Servlet 中,我注意到有 _jspservice()
方法,但没有 doGet()
和 doPost()
方法? Servlet 如何区分 GET
和 POST
方法?
In the Servlets that are translated from jsps , I notice that there is _jspservice()
method but no doGet()
and doPost()
methods ? how does the servlet differentiate the GET
and the POST
methods ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
JSP 中处理
GET
和POST
请求没有真正的区别。如果您对使用了什么方法感兴趣,可以调用getMethod()
来找出答案。JSP 的工作方式与覆盖
service(ServletRequest, ServletResponse)
在 Servlet 中,而不是doGet
/doPost.
There is no real difference in handling of
GET
andPOST
requests in JSP. If you are interested in what method was used, you can callgetMethod()
to find out.The way JSPs work is the same as if you overrode
service(ServletRequest, ServletResponse)
in a Servlet instead ofdoGet
/doPost
.