栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java > SpringBoot

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

SpringBoot 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

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

为了方便出接口文档和自己调试,最近新写的项目都在用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账号.

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

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

  3. 清理完成之后发现访问静态资源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


转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/234676.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号