美文网首页
dubbo配置-主要配置

dubbo配置-主要配置

作者: 陈圣杰 | 来源:发表于2019-04-15 04:02 被阅读0次

1,dubbo:application name:指定当前服务/应用名字(提供者/消费者)

2,dubbo:registry address:指定注册中心位置(zookeeper访问地址)

3,dubbo:protocol name:指定通信规则/协议(dubbo)

4,dubbo:service interface="com.sjjy.service.Service" ref="ServiceImpl":暴露服务(提供者)

     + bean id="ServiceImpl" class="com.sjjy.service.impl.ServiceImpl":服务的实现

/ dubbo:reference interface="com.sjjy.service.Service" id="Service":声明需要调用远程服务的接口 :生成远程服务代理(消费者)

    +(<context:component-scan base-package="com.sjjy.service.impl"></context:component-scan>:包扫描器(调用哪里的方法))

5,dubbo:monitor protocol="registry":连接监控中心

相关文章

网友评论

      本文标题:dubbo配置-主要配置

      本文链接:https://www.haomeiwen.com/subject/wpqywqtx.html