HTTP Status 405 - HTTP method GET is not supported by this URL

因为是通过点击a标签进入到的这个页面 而a标签是get请求

而这个BookServlet和它继承的BaseServlet并没有重写doGet()

HTTP Status 405 - HTTP method GET is not supported by this URL

HTTP Status 405 - HTTP method GET is not supported by this URL

那么就可以在父类BaseServlet里面重写doGet(),用doGet()来调用doPost()

HTTP Status 405 - HTTP method GET is not supported by this URL

相关文章: