SpringBoot---Dubbo 的使用

service 和 control 都要引用 interface 来实现和调用接口。

引用

`<dependency>
     <groupId>com.alibaba.boot</groupId>
     <artifactId>dubbo-spring-boot-starter</artifactId>
     <version>0.2.0</version>
 </dependency>

service

启动类

添加注解, 使用 service 注解的时候也要注意引用阿里的。

@SpringBootApplication
@EnableDubbo
public class ServiceApplication {
    public static void main(String[] args) {
        SpringApplication.run(ServiceApplication.class);
    }
}

application.yml

dubbo:
  application:
    name: dubbo_service
  registry:
    address: zookeeper://39.106.43.67:2181
  protocol:
    name: dubbo
    port: 20880
  scan: com.alvin.service

controller

调用时只需要在自动注入上加入 阿里的 reference 注解即可。

application.yml

dubbo:
  application:
    name: dubbo_controller
  registry:
    address: zookeeper://39.106.43.67:2181
  scan: com.alvin.controller