springboot與dubbo的版本匹配問題
springboot與dubbo的版本匹配
官方鏈接
參考:
項目裡原始版本
- springboot:2.1.6.RELEASE
- dubbo-spring-boot-starter : 0.2.1.RELEASE
- dubbo: 2.6.5
上面這麼寫是可以正常運行的。但是當把dubbo升級到2.6.7時候,卻報錯瞭,異常如下:
升級到2.6.7後錯誤日志
Description:
The bean ‘dubboConfigConfiguration.Single’, defined in null, could not be registered. A bean with that name has already been defined in null and overriding is disabled.
Action:
Consider renaming one of the beans or enabling overriding by setting spring.main.allow-bean-definition-overriding=true
後來經過嘗試,把springboot的版本下調到2.0.9時候,項目可以正常啟動。
所以得到下面這個版本匹配的結論:
2.7版本以下的,使用的是alibaba目錄下的jar,
springbootdubbo-springdubbo註1.x0.1.2.RELEASE2.6.5+2.6.6以上的dubbo需要配置netty-alljar包2.0.0~2.0.90.2.1.RELEASE2.6.5/2.6.6/2.6.72.1.x0.2.1.RELEASE2.6.5 /2.7.1
2.7版本以上的,用apache目錄下面的jar,dubbo-spring和dubbo都使用apache下面的版本,統一使用2.7即可,springboot也可以用2.1.x以上
springboot+dubbo版本對應關系
背景
springboot 和 dubbo 在 pom.xml 中的版本是有對應關系的,如果配置的依賴不按照對應關系配置的話項目啟動就會報錯,報錯的信息如下所示:
java.lang.IllegalStateException: Cannot load configuration class: com.alibaba.boot.dubbo.autoconfigure.DubboAutoConfiguration
at org.springframework.context.annotation.ConfigurationClassPostProcessor.enhanceConfigurationClasses(ConfigurationClassPostProcessor.java:403) ~[spring-context-4.3.12.RELEASE.jar:4.3.12.RELEASE]
at org.springframework.context.annotation.ConfigurationClassPostProcessor.postProcessBeanFactory(ConfigurationClassPostProcessor.java:249) ~[spring-context-4.3.12.RELEASE.jar:4.3.12.RELEASE]
at org.springframework.context.support.PostProcessorRegistrationDelegate.invokeBeanFactoryPostProcessors(PostProcessorRegistrationDelegate.java:283) ~[spring-context-4.3.12.RELEASE.jar:4.3.12.RELEASE]
at org.springframework.context.support.PostProcessorRegistrationDelegate.invokeBeanFactoryPostProcessors(PostProcessorRegistrationDelegate.java:127) ~[spring-context-4.3.12.RELEASE.jar:4.3.12.RELEASE]
at org.springframework.context.support.AbstractApplicationContext.invokeBeanFactoryPostProcessors(AbstractApplicationContext.java:687) ~[spring-context-4.3.12.RELEASE.jar:4.3.12.RELEASE]
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:525) ~[spring-context-4.3.12.RELEASE.jar:4.3.12.RELEASE]
at org.springframework.boot.context.embedded.EmbeddedWebApplicationContext.refresh(EmbeddedWebApplicationContext.java:122) ~[spring-boot-1.5.8.RELEASE.jar:1.5.8.RELEASE]
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:693) [spring-boot-1.5.8.RELEASE.jar:1.5.8.RELEASE]
at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:360) [spring-boot-1.5.8.RELEASE.jar:1.5.8.RELEASE]
at org.springframework.boot.SpringApplication.run(SpringApplication.java:303) [spring-boot-1.5.8.RELEASE.jar:1.5.8.RELEASE]
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1118) [spring-boot-1.5.8.RELEASE.jar:1.5.8.RELEASE]
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1107) [spring-boot-1.5.8.RELEASE.jar:1.5.8.RELEASE]
at com.ProviderApplication.main(ProviderApplication.java:13) [classes/:na]
對應關系
我在項目中使用的阿裡巴巴的 dubbo-spring-boot-starter 版本是 0.2.0 ,maven 依賴如下所示:
<dependency> <groupId>com.alibaba.boot</groupId> <artifactId>dubbo-spring-boot-starter</artifactId> <version>0.2.0</version> </dependency>
則對應的使用 spring-boot-starter-parent 的版本號是 2.1.6.RELEASE ,這樣配置依賴的話,項目啟動是沒有問題的。
Dubbo Spring Boot | Dubbo | Spring Boot |
0.2.1.RELEASE | 2.6.5+ | 2.x |
0.1.2.RELEASE | 2.6.5+ | 1.x |
可以在 https://mvnrepository.com/artifact/com.alibaba.boot/dubbo-spring-boot-starter 裡面查看 dubbo 的所有版本信息。
以上為個人經驗,希望能給大傢一個參考,也希望大傢多多支持WalkonNet。
推薦閱讀:
- SpringBoot詳細探究講解默認組件掃描
- Spring與Dubbo搭建一個簡單的分佈式詳情
- 解決springboot啟動失敗的問題('hibernate.dialect' not set)
- 升級dubbo2.7.4.1版本平滑遷移到註冊中心nacos
- 關於Spring配置文件加載方式變化引發的異常詳解