form元素向servlet提交数据出现The requested resource is not available 即HTTP Status 404 错误

时间:2021-10-01 21:03:33

项目结构图如下:

form元素向servlet提交数据出现The requested resource is not available 即HTTP Status 404 错误


遇到的错误是:

form元素向servlet提交数据出现The requested resource is not available 即HTTP Status 404 错误


其中modifyStuInfoResult.jsp的form元素的属性为:

form元素向servlet提交数据出现The requested resource is not available 即HTTP Status 404 错误



modifyStuInfoResult.jsp运行后的界面为:

form元素向servlet提交数据出现The requested resource is not available 即HTTP Status 404 错误



出现错误的第一个想法就是form元素的action属性写错了。

检查一下它们俩的路径:

http://localhost:8080/LibraryManagement/mgrView/modifyStuInfoResult.jsp

http://localhost:8080/LibraryManagement/StuManage

发现并没有写错(对于../StuManage不熟悉的可以自行搜索一下,懒得搜索的话看最下面的图)


然后,经过了千辛万苦的排错之旅,发现是StuManage这个Servlet中的@WebServlet中的值我给弄错了

form元素向servlet提交数据出现The requested resource is not available 即HTTP Status 404 错误


将其更改成/StuManage之后就可以成功运行了。



总结与反思:

仔细回忆了一下自己那个地方为什么会写错:这个StuManage与之前自己写的一个Servlet的功能十分相像,自己就偷懒copy了过来,结果这个地方就没有修改过来,害得自己找了好长时间的bug。所以,今后copy代码要十分慎重,最好不要copy,毕竟找错的时间远远大于那偷懒copy节省的一点点时间。


form元素向servlet提交数据出现The requested resource is not available 即HTTP Status 404 错误