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

相关文章:

  • 2021-07-21
  • 2021-08-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-05-25
相关资源
相似解决方案