在 SpringBoot 很火熱的時候,阿里巴巴的分佈式框架 Dubbo 不知是處於什麼考慮,在停更N年以後終於進行維護了。在以前的微服務中,使用的是噹噹維護的版本 Dubbox,整合方式也是使用的 xml 配置方式。java
以前在 SpringBoot 中使用 Dubbox是這樣的。先簡單記錄下版本,Dubbox-2.8.四、zkclient-0.六、zookeeper-3.4.6。git
項目中引入 spring-context-dubbo.xml 配置文件以下:github
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:dubbo="http://code.alibabatech.com/schema/dubbo" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://code.alibabatech.com/schema/dubbo http://code.alibabatech.com/schema/dubbo/dubbo.xsd "> <!-- 記錄監控信息 --> <dubbo:monitor protocol="registry"/> <!-- 提供方應用信息,用於計算依賴關係 --> <dubbo:application name="spring-boot-pay" /> <!-- 使用zookeeper註冊中心暴露服務地址 subscribe 默認:true 是否向此註冊中心訂閱服務,若是設爲false,將只註冊,不訂閱 check 默認:true 註冊中心不存在時,是否報錯 --> <dubbo:registry protocol="zookeeper" address="192.168.1.180:2181" check="false"/> <!-- 生產者配置 生產者 遠程默認調用3次 參數 retries="2" async="true" 異步返回結果 默認是同步 timeout="10000" 毫秒 用dubbo協議在20882端口暴露服務 固定線程池 10 啓動時創建線程,不關閉,一直持有 負載均衡策略 輪詢 --> <dubbo:provider timeout="10000" threads="10" threadpool="fixed" loadbalance="roundrobin"/> <!-- name="dubbo" 協議名稱 爲防止被大量鏈接撐掛,可在服務提供方限制大接收鏈接數,以實現服務提供方自我保護。 host 部署外網設置爲內網通訊地址--> <dubbo:protocol name="dubbo" port="-1" dispatcher="all" accepts="1000" /> <!-- 使用註解方式--> <dubbo:annotation package="com.itstyle"/> </beans>
啓動類引入如下註解:spring
@SpringBootApplication @ImportResource({"classpath:spring-context-dubbo.xml"}) public class Application{ private static final Logger logger = Logger.getLogger(Application.class); public static void main(String[] args) throws InterruptedException, IOException { logger.info("支付項目啓動 "); } }
然而 SpringBoot 引入了新的概念 Spring Boot Starter,它有效的下降了項目開發過程的複雜程度,對於簡化開發操做有着很是好的效果。apache
starter 會把全部用到的依賴都給包含進來,避免了開發者本身去引入依賴所帶來的麻煩。springboot
須要注意的是不一樣的 starter 是爲了解決不一樣的依賴,因此它們內部的實現可能會有很大的差別,例如 jpa 的starter 和 Redis 的 starter 可能實現就不同,這是由於 starter 的本質在於 synthesize,這是一層在邏輯層面的抽象,也許這種理念有點相似於 Docker,由於它們都是在作一個「包裝」的操做,若是你知道 Docker 是爲了解決什麼問題的,也許你能夠用 Docker 和 starter 作一個類比。微信
雖然不一樣的starter實現起來各有差別,可是他們基本上都會使用到兩個相同的內容:ConfigurationProperties和AutoConfiguration。app
由於Spring Boot堅信「約定大於配置」這一理念,因此咱們使用ConfigurationProperties來保存咱們的配置,而且這些配置均可以有一個默認值,即在咱們沒有主動覆寫原始配置的狀況下,默認值就會生效,這在不少狀況下是很是有用的。負載均衡
除此以外,starter的ConfigurationProperties還使得全部的配置屬性被彙集到一個文件中(通常在resources目錄下的application.properties),這樣咱們就告別了Spring項目中XML地獄。框架
強如Dubbo,固然也會建立屬於本身的 starter 來迎合Spring Boot 的火熱。
這裏咱們使用Dubbo比較新的版本,pom.xml 引入如下:
<!-- dubbo 替換 dubbox--> <dependency> <groupId>com.alibaba</groupId> <artifactId>dubbo</artifactId> <version>2.6.2</version> </dependency> <dependency> <groupId>com.alibaba.spring.boot</groupId> <artifactId>dubbo-spring-boot-starter</artifactId> <version>2.0.0</version> </dependency> <!-- curator-recipes 替換 zkclient--> <dependency> <groupId>org.apache.curator</groupId> <artifactId>curator-recipes</artifactId> <version>4.0.1</version> </dependency>
application.properties 配置:
## dubbo springboot 配置 spring.dubbo.application.id=springboot_pay spring.dubbo.application.name=springboot_pay spring.dubbo.registry.address=zookeeper://192.168.1.127:2181 spring.dubbo.provider.threads=10 spring.dubbo.provider.threadpool=fixed spring.dubbo.provider.loadbalance=roundrobin spring.dubbo.server=true spring.dubbo.protocol.name=dubbo
啓動類加入如下註解:
@EnableDubboConfiguration @SpringBootApplication public class Application{ private static final Logger logger = Logger.getLogger(Application.class); public static void main(String[] args) throws InterruptedException, IOException { logger.info("支付項目啓動 "); } }
相關暴露接口實現配置:
import org.springframework.stereotype.Component; import com.alibaba.dubbo.config.annotation.Service; @Service @Component public class AliPayServiceImpl implements IAliPayService { //省略代碼 }
最後啓動服務,若是啓動成功並註冊到註冊中心,說明改形成功。
Dubbo 2.6.1 是改變結構後首次發佈的版本,Dubbo 2.6.0 已合併噹噹網提供的 Dubbox 分支。
Dubbo的版本策略:兩個大版本並行發展,2.5.x是穩定版本,2.6.x是新功能實驗版本。2.6上實驗都穩定了之後,會遷移到2.5。
支付寶,微信,銀聯詳細代碼案例:https://gitee.com/52itstyle/spring-boot-pay
https://github.com/apache/incubator-dubbo
https://github.com/alibaba/dubbo-spring-boot-starter/blob/master/README_zh.md
https://github.com/spring-projects/spring-boot/tree/master/spring-boot-project/spring-boot-starters
https://www.nosuchfield.com/2017/10/15/Spring-Boot-Starters/