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
欢迎来到这里!
我们正在构建一个小众社区,大家在这里相互信任,以平等 • 自由 • 奔放的价值观进行分享交流。最终,希望大家能够找到与自己志同道合的伙伴,共同成长。
注册 关于