前言
在 SpringBoot 很火热的时候,阿里巴巴的分布式框架 Dubbo 不知是处于什么考虑,在停更N年之后终于进行维护了。在之前的微服务中,使用的是当当维护的版本 Dubbox,整合方式也是使用的 xml 配置方式。
改造前
之前在 SpringBoot 中使用 Dubbox是这样的。先简单记录下版本,Dubbox-2.8.4、zkclient-0.6、zookeeper-3.4.6。
项目中引入 spring-context-dubbo.xml 配置文件如下:
启动类引入以下注解:
@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,它有效的降低了项目开发过程的复杂程度,对于简化开发操作有着非常好的效果。
starter的理念
starter 会把所有用到的依赖都给包含进来,避免了开发者自己去引入依赖所带来的麻烦。
需要注意的是不同的 starter 是为了解决不同的依赖,所以它们内部的实现可能会有很大的差异,例如 jpa 的starter 和 Redis 的 starter 可能实现就不一样,这是因为 starter 的本质在于 synthesize,这是一层在逻辑层面的抽象,也许这种理念有点类似于 Docker,因为它们都是在做一个“包装”的操作,如果你知道 Docker 是为了解决什么问题的,也许你可以用 Docker 和 starter 做一个类比。
starter的实现
虽然不同的starter实现起来各有差异,但是他们基本上都会使用到两个相同的内容:ConfigurationProperties和AutoConfiguration。
因为Spring Boot坚信“约定大于配置”这一理念,所以我们使用ConfigurationProperties来保存我们的配置,并且这些配置都可以有一个默认值,即在我们没有主动覆写原始配置的情况下,默认值就会生效,这在很多情况下是非常有用的。
除此之外,starter的ConfigurationProperties还使得所有的配置属性被聚集到一个文件中(一般在resources目录下的application.properties),这样我们就告别了Spring项目中XML地狱。
starter的整体逻辑
强如Dubbo,当然也会创建属于自己的 starter 来迎合Spring Boot 的火热。
这里我们使用Dubbo比较新的版本,pom.xml 引入以下:
com.alibaba
dubbo
2.6.2
com.alibaba.spring.boot
dubbo-spring-boot-starter
2.0.0
org.apache.curator
curator-recipes
4.0.1
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。
总结
- 原当当 Dubbox 2.8.4 替换为 Dubbo 2.6.2
- 原 spring-context-dubbo.xml 配置 替换为 dubbo-spring-boot-starter 2.0.0
- 原 zkclient 0.6 替换为 curator-recipes 4.0.1
- 原 zookeeper 3.4.6 升级为 zookeeper 3.5.3
案例
支付宝,微信,银联详细代码案例: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/