swagger2 集成无效_使用springboot集成swagger2遇到的问题总结

在使用SpringBoot 2.0.6集成Swagger2 2.6.0时,遇到访问swagger-ui.html显示错误。解决方案包括在启动类添加@EnableSwagger2注解,以及清理浏览器缓存。若仍然出现404错误,可在Swagger配置类中添加资源处理器,以正确加载swagger-ui资源。
摘要由CSDN通过智能技术生成

为了方便出接口文档和自己调试,最近新写的项目都在用swagger来生成接口文档.

springboot 2.0.6+swagger 2.6.0

问题配置完成之后启动项目,url访问localhost:8080/swagger-ui.html 显示如下

错误图片.png

Unable to infer base url. This is common when using dynamic servlet registration or when the API is behind an API Gateway. The base url is the root of where all the swagger resources are served. For e.g. if the api is available at http://example.org/api/v2/api-docs then the base url is http://example.org/api/. Please enter the location manually:

解决方法,百度中搜到的大部分都是某sdn,恶心的必须登录才能看.所以多搜索了几个,并没有注册某n账号.启动类上加上注解

@EnableSwagger2

如果还是不好使.

清理chrome缓存

清理完成之后发现访问静态资源404

错误信息.png

swagger配置文件中增加代码:@EnableSwagger2@Configurationpublic class SwaggerConfig implements WebMvcConfigurer {@Override

public void addResourceHandlers(ResourceHandlerRegistry registry) {

registry.addResourceHandler("**/swagger-ui.html")

.addResourceLocations("classpath:/META-INF/resources/");

registry.addResourceHandler("/webjars*")

.addResourceLocations("classpath:/META-INF/resources/webjars/");

}

作者:H_Man

链接:https://www.jianshu.com/p/ca1ec25a5e82

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值