DUBBO学习- 参数回调

Posted 小严

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了DUBBO学习- 参数回调相关的知识,希望对你有一定的参考价值。

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:dubbo="http://code.alibabatech.com/schema/dubbo"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
       http://www.springframework.org/schema/beans/spring-beans.xsd        
       http://code.alibabatech.com/schema/dubbo        
       http://code.alibabatech.com/schema/dubbo/dubbo.xsd">

    <!--应用名称-->
    <dubbo:application name="hello-world-app"/>

    
    <!--多注册中心,启动时不检查,且不是默认的注册中心-->

    <!--暴露端口的地址-->
    <dubbo:protocol name="dubbo" port="20880" />

    <dubbo:service interface="com.learn.core.demo.CallbackService" ref="callbackService" connections="1" callbacks="100" >

        <dubbo:method name="addListener">
            <dubbo:argument index="1" callback="true"/>
        </dubbo:method>

    </dubbo:service>

    <bean class="com.learn.core.demo.provider.CallbackServiceImpl" id="callbackService"/>

</beans>

 

以上是关于DUBBO学习- 参数回调的主要内容,如果未能解决你的问题,请参考以下文章

更新片段参数的最佳实践?

Facebook状态回调不适用于片段

Dubbo -- 系统学习 笔记 -- 示例 -- 参数验证

dubbo实现动态调用

dubbo用户指南

dubbo远程方法调用的基本原理