
springMVC
文章平均质量分 74
_Easyway
这个作者很懒,什么都没留下…
展开
-
SpringMVC-REST 案例时:No mapping found for HTTP request with URI....
No mapping found for HTTP request with URI [XXXXXX] in DispatcherServlet with name 'springDispatcherServlet'原因:拦截不到请求,访问路径出错,请求的页面找不到解释:在添加操作中,由于在controller类中使用了@RequestMapping("employeesContr...原创 2019-06-13 19:15:20 · 983 阅读 · 0 评论 -
springMVC不支持Get方法访问: Request method 'GET' not supported
Request method 'GET' not supported原因:不支持Get方法访问源代码form表单用的是post方法提交,并没有使用get方法<form action="employeesController/getEmps" method="post">其对应的controller类的方法的注解@RequestMapping(value...原创 2019-06-13 19:21:38 · 2297 阅读 · 1 评论