继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

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

慕虎7371278
关注TA
已关注
手记 1308
粉丝 202
获赞 878

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

问题

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

    webp

    错误图片.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账号.

  1. 启动类上加上注解
    @EnableSwagger2

  2. 如果还是不好使.
    清理chrome缓存

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


    webp

    错误信息.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


打开App,阅读手记
1人推荐
发表评论
随时随地看视频慕课网APP