SpringMVC错误:No mapping found for HTTP request with URI [xxxx] in DispatcherServlet
程序员文章站
2022-03-08 16:12:46
...
详细报错如下:[No mapping found for HTTP request with URI [/webui/menu/get/whole/tree.json] in DispatcherServlet with name 'springDispatcherServlet']
这个错误提示也很直观,就是说没有你的springmvc项目没有为当前的浏览器这个前端的请求路径/webui/menu/get/whole/tree.json做相应部署
具体原因分析,我总结了三点
1 当前handler(Controller类)没有被加入ioc容器,不是ioc容器的组件,原因可能是
- 处理器类上忘了加@Controller注解,如果是ajax请求我们还需要用@[email protected]来标识请求的handler方法
- springmvc配置文件的自动包扫描component-scan没有覆盖到,一定要精准扫描,参考如下
<!-- 配置自动扫描的包:扫描handler -->
<context:component-scan base-package="com.wzh.atcrowdfunding.mvc"/>
- 你的springmvc配置文件缺少了下面这个驱动组件
<mvc:annotation-driven/>
2 前端发送的request请求的url和你 @RequestMapping(“xxx”)配置的路径不一致
3 Springmvc在web.xml中配置的前端控制器有问题,其中比较常见的就是拦截路径的设置问题,可参考下面案例进行改正
<!-- Map all requests to the DispatcherServlet for handling -->
<servlet-mapping>
<servlet-name>springDispatcherServlet</servlet-name>
<!-- 注意:/和/*都是拦截所有请求,但是后者拦截范围更大,还会拦截到.jsp的请求,一单拦截浏览器端就不会再显示了-->
<!-- 此外,我们可以以.xxx后缀为依据进行进行更精确的匹配-->
<!-- <url-pattern>/</url-pattern> -->
<!-- url-pattern配置方式二:配置请求扩展名 -->
<!-- 优点1:xxx.css、xxx.js、xxx.png等等静态资源完全不经过SpringMVC,不需要特殊处理 -->
<!-- 优点2:可以实现伪静态效果。表面上看起来是访问一个HTML文件这样的静态资源,但是实际上是经过Java代码运算的结果。 -->
<!-- 伪静态作用1:给黑客入侵增加难度。 -->
<!-- 伪静态作用2:有利于SEO优化(让百度、谷歌这样的搜索引擎更容易找到我们项目)。 -->
<!-- 缺点:不符合RESTFul风格 -->
<url-pattern>*.html</url-pattern>
<!-- 为什么要另外再配置json扩展名呢? -->
<!-- 如果一个Ajax请求扩展名是html,但是实际服务器给浏览器返回的是json数据,二者就不匹配了,会出现406错误。 -->
<!-- 为了让Ajax请求能够顺利拿到JSON格式的响应数据,我们另外配置json扩展名 -->
<url-pattern>*.json</url-pattern>
</servlet-mapping>
推荐阅读
-
No mapping found for HTTP request with URI [/springmvc-1/springmvc/testParamsAndHeaders] in Dispatch
-
vue+No mapping found for HTTP request with URI [*//**] in DispatcherServlet with name ‘springMvc‘
-
异常记录二:寻求解决异常 !No mapping found for HTTP request with URI
-
如何解决“ No mapping found for HTTP request with URI [XXX] in DispatcherServlet with name 'XXX' ”
-
警告: No mapping found for HTTP request with URI [/springmvc-01/helloworld] in DispatcherServlet with
-
No mapping found for HTTP request with URI [/xxx/xxx] in DispatcherServlet with name 'xxx'
-
No mapping found for HTTP request with URI [...] in DispatcherServlet with name ‘DispatcherServlet‘
-
No mapping found for HTTP request with URI [***.html] in DispatcherServlet with name "***"
-
No mapping found for HTTP request with URI [/HelloWeb/] in DispatcherServlet with name 'HelloWeb...
-
No mapping found for HTTP request with URI [/app17a/] in DispatcherServlet with name 'springmvc'解决方法