从 jsps 翻译过来的 servlet 中的 doGet() 和 doPost() 方法在哪里

发布于 2024-10-20 14:43:27 字数 171 浏览 0 评论 0原文

在从 jsps 翻译的 Servlet 中,我注意到有 _jspservice() 方法,但没有 doGet()doPost() 方法? Servlet 如何区分 GETPOST 方法?

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 技术交流群。

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

发布评论

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

评论(1

年少掌心 2024-10-27 14:43:27

JSP 中处理 GETPOST 请求没有真正的区别。如果您对使用了什么方法感兴趣,可以调用 getMethod() 来找出答案。

JSP 的工作方式与覆盖 service(ServletRequest, ServletResponse) 在 Servlet 中,而不是 doGet / doPost.

There is no real difference in handling of GET and POST requests in JSP. If you are interested in what method was used, you can call getMethod() to find out.

The way JSPs work is the same as if you overrode service(ServletRequest, ServletResponse) in a Servlet instead of doGet / doPost.

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