Whitelabel Error Page
This application has no explicit mapping for /error, so you are seeing this as a fallback.
Tue Mar 24 21:13:28 CST 2020
There was an unexpected error (type=Not Found, status=404).
/boot/bankAccountList/BankAccountList.jsp
可能错误原因是请求路径有问题
- //@RequestMapping("/bankAccount/list.do")错误请求
- //@RequestMapping("/bankAccountList")正确请求
- // @RequestMapping(value = "/bankAccountList", method = RequestMethod.GET)//正确请求
本文探讨了WhitelabelErrorPage出现的原因,特别是在尝试访问未映射到具体资源的URL时,如'/boot/bankAccountList/BankAccountList.jsp'。文章指出了@RequestMapping注解在控制器中的正确使用方式,强调了请求映射的准确性对于避免404错误的重要性。
3779

被折叠的 条评论
为什么被折叠?



