升级SSM项目,使用SpringBoot整合Swagger2,出现访问 /swagger-ui.html 时 404
后台提示:o.s.web.servlet.PageNotFound : No mapping for GET /swagger-ui.html
由于配置WebMvcConfigurer时,将springboot的默认配置覆盖,默认配置中配置过资源解析,故这里无法访问
新增资源处理器
@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
registry.addResourceHandler("swagger-ui.html").addResourceLocations("classpath:/META-INF/resources/");
}
参考文章
Swagger-ui.html界面打开报404错误
整合Swagger2报错:swagger-ui.html 出现 404
原文:https://www.cnblogs.com/lifelikeplay/p/14424174.html