本文主要解读dubbo消费者是如何引用服务端接口的,是如何像本地调用一样调用远程服务的。
并试着从设计者的角度思考,为何这样设计。
@Component public class DubboConsumer { @Reference(check = false) private HelloService helloService; public String sayHello(String name) { return helloService.sayHello(name); } }
06-16 18:35