我用Google搜索并得到以下结果: Using PUT method in HTML form
现在我通过以下方式做到了这一点:
protected void service(HttpServletRequest req, HttpServletResponse resp)
throws ServletException, IOException {
String method = req.getMethod();
if (method.equals("GET")) {
this.doDelete(req, resp);
}
}
有没有其他方法可以调用doPut()
方法而不覆盖service()
方法?
我有一份产品清单。现在,我想使用带有HTTP方法的doPut()
的JSP表单,使用servlet PUT
方法更新产品详细信息。
这是我的JSP表单:
<form class="form-horizontal" action="${pageContext.request.contextPath}/book/update" method="post">
</form>