springboot整合dubbo、zookeeper , 实现生产者-消费者模型

基于注解

https://github.com/Nirvana010...

基于xml文件

https://github.com/Nirvana010...

区别

基于xml文件方式,在服务提供方,新增provider.xml,在里面配置服务提供方相应的信息;在启动类中新增@ImportResource("provider.xml");去掉具体服务实现类中@Service注解;

在服务消费方,新增consumer.xml的配置文件;在启动类中新增@ImportResource("consumer.xml");
使用spring的@Autowired注解替代@Reference 。

你可能感兴趣的:(dubbo-zookeeper)