SpringBoot常见错误总结2

4 篇文章 0 订阅
3 篇文章 0 订阅

上一篇:SpringBoot常见错误总结

Springboot项目创建问题

Initialization failed for 'https://start.spring.io' Please check URL, network and proxy settings.  Error message: Cannot download 'https://start.spring.io': Connection reset

看见答案有改https为http的,看见答案有修改settings的,但是我都试过了,都失败

最后解决方法是:修改创建源为阿里
在这里插入图片描述

点击红色框内设置按钮,点之后修改远源为国内的ali,不得不说,有时候国内的东西还是很香的,比如清华源,ali源

SWAGGER问题

SWAGGER是SpringBoot自用的一个api管理框架

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: 

并且springboot中的swagger运行之后提示空指针异常

解决方案1:springboot版本降级

严格来讲很多时候bug都是由于版本升级导致的,所以降级有时候会是一个不错的选择

降级到2.5.1左右就可以了

<dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>

    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-test</artifactId>
        <scope>test</scope>
    </dependency>
</dependencies>

将dependencies里面的内容注释,直接修改parents里面的版本,比如我修改为了2.2.1

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.2.1.RELEASE</version>
    <relativePath/> <!-- lookup parent from repository -->
</parent>

然后等待点击刷新,等待成功后运行成功
在这里插入图片描述

解决方案二:

加上@EnableSwagger2注解在启动类里面
在这里插入图片描述

解决方案三:
修改application文件配置(这里有些忘了)

  • 1
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值