玩轉Spring Boot 集成Dubbo
阿新 • • 發佈:2017-11-30
ext 入口 1.8 bat .proto 中心 group autoconf spa 玩轉Spring Boot 集成Dubbo
使用Spring Boot 與Dubbo集成,這裏我之前嘗試了使用註解的方式,簡單的使用註解註冊服務其實是沒有問題的,但是當你涉及到使用註解的時候在服務裏面引用事務,註入其他對象的時候,會有一些問題。於是我就果斷放棄了註解了,使用的是XML,這裏可能介紹的是Dubbo,但是如果使用Dubbox的話,基本上是兼容的。接下來,將說說使用XML的方式與Spring Boot在一起開發。
1.創建工程在pom.xml中加入依賴
創建工程名為: (1)springboot-dubbo-provide (2)springboot-dubbo-api (3)springboot-dubbo-consume springboot-dubbo-api工程主要是放一些service接口,用於提供給消費者使用 。springboot-dubbo-provide工程用於提供服務。 springboot-dubbo-consume工程為消費者。在springboot-dubbo-provide工程中打開pom.xml加入以下依賴,完整代碼如下:
[html] view plain copy
4.0.0
com.chengli
springboot-dubbo-provide
0.0.1-SNAPSHOT
jar
springboot-dubbo-provide
http://maven.apache.org
org.springframework.boot
spring-boot-starter-parent
1.4.3.RELEASE
UTF-8
1.8
2.5.3
3.4.6
0.1
com.chengli
springboot-dubbo-api
0.0.1-SNAPSHOT
org.springframework.boot
spring-boot-starter
com.alibaba
dubbo
org.springframework
spring
${com.alibaba.dubbo.version}
org.apache.zookeeper
zookeeper
${org.apache.zookeeper.version}
com.github.sgroschupf
zkclient
${com.github.sgroschupf.zkclient.version}
org.springframework.boot
spring-boot-maven-plugin
打開springboot-dubbo-consume工程,在pom.xml中加入以下依賴,完整代碼如下:
[html] view plain copy
4.0.0
com.chengli
springboot-dubbo-consume
0.0.1-SNAPSHOT
jar
springboot-dubbo-consume
http://maven.apache.org
org.springframework.boot
spring-boot-starter-parent
1.4.3.RELEASE
UTF-8
1.8
2.5.3
3.4.6
0.1
com.chengli
springboot-dubbo-api
0.0.1-SNAPSHOT
org.springframework.boot
spring-boot-starter-web
com.alibaba
dubbo
org.springframework
spring
${com.alibaba.dubbo.version}
org.apache.zookeeper
zookeeper
${org.apache.zookeeper.version}
com.github.sgroschupf
zkclient
${com.github.sgroschupf.zkclient.version}
org.springframework.boot
spring-boot-configuration-processor
true
org.springframework.boot
spring-boot-maven-plugin
2.Dubbo配置
2.1springboot-dubbo-provide服務提供者
(1)在springboot-dubbo-provide項目中創建入口啟動類MainConfig,完整代碼如下:
[java] view plain copy
package com.chengli.springboot;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class MainConfig {
public static void main(String[] args) {
SpringApplication.run(MainConfig.class, args);
try {
System.in.read();
} catch (Exception e) {
e.printStackTrace();
}
}
}
(2)創建Dubbo配置類
[java] view plain copy
package com.chengli.springboot.dubbo;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.ImportResource;
import org.springframework.context.annotation.PropertySource;
@Configuration
@PropertySource("classpath:dubbo/dubbo.properties")
@ImportResource({ "classpath:dubbo/*.xml" })
public class DubboConfig {
}
(3)創建Dubbo配置文件 在src/main/resources下新建文件夾dubbo,並加入以下配置: dubbo-provider.xml內容如下:
[html] view plain copy
註意:這裏我發布的example服務是示例,具體的根據實際修改
(4)創建dubbo.properties
[html] view plain copy
#應用名稱
dubbo.application.name=example-provider
#註冊中心類型
dubbo.registry.protocol=zookeeper
#註冊中心地址
dubbo.registry.address=127.0.0.1:2181
#暴露服務方式
dubbo.protocol.name=dubbo
#暴露服務端口
dubbo.protocol.port=20880
2.2springboot-dubbo-consume服務消費者
(1)創建入口啟動類MainConfig
[java] view plain copy
package com.chengli.springboot;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class MainConfig {
public static void main(String[] args) {
SpringApplication.run(MainConfig.class, args);
}
}
(2)創建Dubbo配置類
[java] view plain copy
package com.chengli.springboot.dubbo;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.ImportResource;
import org.springframework.context.annotation.PropertySource;
@Configuration
@PropertySource("classpath:dubbo/dubbo.properties")
@ImportResource({ "classpath:dubbo/*.xml" })
public class DubboConfig {
}
(3)創建Dubbo配置文件 在src/main/resources下新建文件夾dubbo,並加入以下配置: dubbo-consume.xml內容如下:
[html] view plain copy
(4)創建dubbo.properties
[html] view plain copy
#應用名稱
dubbo.application.name=example-consume
#註冊中心類型
dubbo.registry.protocol=zookeeper
#註冊中心地址
dubbo.registry.address=127.0.0.1:2181
到這裏基本上就已經可以了,不過測試類的代碼我就不貼上來了。只要在API中定義接口實現即可。使用Spring Boot 與Dubbo集成的時候,需要註意的是,不要使用Spring Boot提供的devtools熱啟動,因為devtools提供了兩個ClassLoader,加載策略問題導致出現錯誤,無法啟動。如果開發中需要熱加載,那麽使用Spring 提供的springloaded。
有興趣的朋友可以加群探討相互學習:
玩轉Spring Boot 集成Dubbo