在jsp页面怎样通过servlet删除一行数据 50

welcome.jsp页面:<ahref='delete?id="+id+"'>delete</a>servlet为/delete的servlet类:protectedv... welcome.jsp 页面:
<a href='delete?id=" + id + "'>delete</a>

servlet为 /delete 的servlet类:
protected void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
// TODO Auto-generated method stub
String id = request.getParameter("id");
String sql = "DELETE FROM StudentInfo WHERE id='" + id + "'";
DBUtil db = new DBUtil();
db.exeDelete(sql); // 删除执行
response.sendRedirect("welcome.jsp");
}

问题是:为什么报错405 Method Not Allowed
HTTP Status 405 – Method Not Allowed

Type Status Report

Message HTTP method GET is not supported by this URL

Description The method received in the request-line is known by the origin server but not supported by the target resource.

Apache Tomcat/8.5.23
展开
 我来答
grace23450
2017-11-18 · TA获得超过1.3万个赞
知道大有可为答主
回答量:7081
采纳率:77%
帮助的人:2335万
展开全部
你用数据库id去删除底层sql写法
delete from 表 where id=页面传过来的值
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
来宾你好闯天涯
2017-11-18 · TA获得超过3876个赞
知道大有可为答主
回答量:4086
采纳率:64%
帮助的人:795万
展开全部
传参数的话就要使用doGet()
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 2条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式