Dubbo使用

		<!--dubbo-->
        
            com.alibaba.spring.boot
            dubbo-spring-boot-starter
            2.0.0
        

接口

public interface IUseService {
    public String sayHello(String name);
}

在这里插入图片描述
实现类

@Component
@Service(interfaceClass = IUseService.class)  //dubbo注解
public class UserServiceImpl implements IUseService {
    @Override
    public String sayHello(String name) {
        return "hello:"+name;
    }
}

Dubbo使用_第1张图片

你可能感兴趣的:(学习笔记,dubbo,java)