初学springcloud,版本问题
2021/8/8 23:39:16
本文主要是介绍初学springcloud,版本问题,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
初学spring boot,出现一堆错误,多半是导入依赖的版本冲突
版本推荐指路官网:https://github.com/spring-cloud/spring-cloud-release/wiki/Spring-Cloud-Hoxton-Release-Notes
下面是一些亲测有效的总结。
- spring-boot-starter-parent 必须要放在 parent 标签里面,否则报 gson 中的 GsonBuilder 未找到错误;
- mybatis-spring-boot-starter 版本不对会导致 can not start in Thread;
- springcloud, springboot 版本不对会导致启动失败,提示 bean 未找到或者无法注入;
- spring-boot-devtools 版本也很重要。
成功启动的的版本如下:
- spring boot:spring-boot-starter-parent:2.3.12.RELEASE
- spring cloud:spring-cloud-dependencies:Hoxton.SR12
- mybatis:mybatis-spring-boot-starter:2.2.0
- netflix(eureka / 服务者&消费者):spring-cloud-starter-netflix-eureka-server / -client:2.2.9.RELEASE
- spring-boot-devtools:2.3.4.RELEASE
(其中,Netflix还包括以下内容:)
- ribbon:spring-cloud-starter-netflix-ribbon
- feign:spring-cloud-starter-openfeign
- hystrix:spring-cloud-starter-netflix-hystrix spring-cloud-starter-netflix-hystrix-dashboard
- zuul:spring-cloud-starter-netflix-zuul
这篇关于初学springcloud,版本问题的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-15JavaMailSender是什么,怎么使用?-icode9专业技术文章分享
- 2024-11-15JWT 用户校验学习:从入门到实践
- 2024-11-15Nest学习:新手入门全面指南
- 2024-11-15RestfulAPI学习:新手入门指南
- 2024-11-15Server Component学习:入门教程与实践指南
- 2024-11-15动态路由入门:新手必读指南
- 2024-11-15JWT 用户校验入门:轻松掌握JWT认证基础
- 2024-11-15Nest后端开发入门指南
- 2024-11-15Nest后端开发入门教程
- 2024-11-15RestfulAPI入门:新手快速上手指南