idea - springboot - No mapping found for HTTP request with URI [**] in DispatcherServlet

前言

   swagger起不来了,报了这个错,查了几个方法,还是这个解决方法靠谱。

解决方案

这个错误,是因为资源映射问题导致。

我们在访问http://localhost/swagger-ui.html时,这个swagger-ui.html相关的所有前端静态文件都在springfox-swagger-ui-2.4.0.jar里面。目录如下:
idea - springboot - No mapping found for HTTP request with URI [**] in DispatcherServlet_第1张图片
SpringBoot自动配置本身并不会把/swagger-ui.html这个路径映射到对应的目录META-INF/resources/下面。我们加上这个映射即可。构建一个WebMvcConfig 类,代码如下:
idea - springboot - No mapping found for HTTP request with URI [**] in DispatcherServlet_第2张图片

在这里,挂上其他解决办法,请参考。https://blog.csdn.net/qq_33206732/article/details/80136173

感谢您的访问!

你可能感兴趣的:(项目)