淘宝SOA框架dubbo学习(7)--异步调用

2024-06-10 15:58

本文主要是介绍淘宝SOA框架dubbo学习(7)--异步调用,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

转自:https://my.oschina.net/hanshubo/blog/378111

图片来源:点击打开链接

整个异步过程图片描述的很清楚,下面来看看代码:

一、服务提供者

1、服务提供者接口

[java]  view plain  copy
  1. package com.test.dubboser;  
  2.   
  3. public interface ServiceDemo2 {  
  4. public Person getPerson(String str,int age);  
  5. }  


2、Person 类

[java]  view plain  copy
  1. package com.test.dubboser;  
  2.   
  3. import java.io.Serializable;  
  4.   
  5. public class Person implements Serializable {  
  6. /** 
  7.      *  
  8.      */  
  9.     private static final long serialVersionUID = 8661104133888956335L;  
  10. private int age;  
  11. private String name;  
  12. public Person(){}  
  13. public Person(int age ,String name){  
  14.     this.age= age;  
  15.     this.name=name;  
  16. }  
  17. public int getAge() {  
  18.     return age;  
  19. }  
  20. public void setAge(int age) {  
  21.     this.age = age;  
  22. }  
  23. public String getName() {  
  24.     return name;  
  25. }  
  26. public void setName(String name) {  
  27.     this.name = name;  
  28. }  
  29.   
  30. @Override  
  31. public String  toString(){  
  32.     StringBuffer  buffer= new StringBuffer();  
  33.     buffer.append("name:"+name+"\t");  
  34.     buffer.append("age:"+age);  
  35.     return buffer.toString();  
  36.       
  37. }  
  38. }  

3、服务提供者接口实现类

[java]  view plain  copy
  1. package com.test.dubboser;  
  2.   
  3. public class ServiceImp2 implements ServiceDemo2{  
  4.   
  5.     public Person getPerson(String str,int age) {  
  6.        Person person=new Person();  
  7.        person.setName(str);  
  8.        person.setAge(age);  
  9.        return person;  
  10.     }  
  11. }  


4、配置文件

[html]  view plain  copy
  1. <?xml version="1.0" encoding="UTF-8"?>  
  2. <beans xmlns="http://www.springframework.org/schema/beans"  
  3.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
  4.     xmlns:dubbo="http://code.alibabatech.com/schema/dubbo"  
  5.     xsi:schemaLocation="http://www.springframework.org/schema/beans  
  6.         http://www.springframework.org/schema/beans/spring-beans.xsd  
  7.         http://code.alibabatech.com/schema/dubbo  
  8.         http://code.alibabatech.com/schema/dubbo/dubbo.xsd  
  9.         ">       
  10.      <!-- 提供方应用信息,用于计算依赖关系,这个和client没必要一致 -->  
  11.     <dubbo:application name="hello-world-app-my" />  
  12.     <!-- 多注册中心配置 -->  
  13.    <dubbo:registry  protocol="zookeeper"  address="192.168.0.102:2181"/>  
  14.      <!-- 用dubbo协议在20880端口暴露服务 -->  
  15.     <dubbo:protocol name="dubbo" port="20880"/>    
  16.      <!-- 声明需要暴露的服务接口 -->  
  17.     <dubbo:service  interface="com.test.dubboser.ServiceDemo"  
  18.         ref="demoService"/>   
  19.     <dubbo:service  interface="com.test.dubboser.ServiceDemo2"  
  20.         ref="demoService2"/>   
  21.     <dubbo:service  interface="com.test.dubboser.CacheService"  
  22.         ref="cacheService"/>   
  23.     <!--和本地bean一样实现服务 -->  
  24.     <bean id="demoService" class="com.test.dubboser.ServiceImp"/>  
  25.     <bean id="demoService2" class="com.test.dubboser.ServiceImp2"/>  
  26.     <!-- 结果缓存 -->  
  27.     <bean id="cacheService" class="com.test.dubboser.CacheServiceImp"/>  
  28.       
  29. </beans>  

二、服务消费者

1、配置文件

[html]  view plain  copy
  1. <?xml version="1.0" encoding="UTF-8"?>  
  2. <beans xmlns="http://www.springframework.org/schema/beans"  
  3.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
  4.     xmlns:dubbo="http://code.alibabatech.com/schema/dubbo"  
  5.     xsi:schemaLocation="http://www.springframework.org/schema/beans  
  6.         http://www.springframework.org/schema/beans/spring-beans.xsd  
  7.         http://code.alibabatech.com/schema/dubbo  
  8.         http://code.alibabatech.com/schema/dubbo/dubbo.xsd  
  9.         ">       
  10.     <!-- 消费方应用名,用于计算依赖关系,不是匹配条件,不要与提供方一样 -->  
  11.     <dubbo:application name="consumer-of-helloworld-app-my" />       
  12.     <!-- 使用zookeeper广播注册中心暴露发现服务地址 -->  
  13.     <dubbo:registry  protocol="zookeeper"  address="192.168.0.102:2181"/>    
  14.     <!--获取服务  -->  
  15.     <dubbo:reference id="demoServicemy"    interface="com.test.dubboser.ServiceDemo"/>  
  16.     <!--异步功能实现-->  
  17.     <dubbo:reference id="demoServicemy2"   interface="com.test.dubboser.ServiceDemo2">  
  18.       <dubbo:method name="getPerson" async="true" />  
  19.     </dubbo:reference>  
  20.     <!--结果缓存配置  -->  
  21.     <dubbo:reference id="cacheService"   interface="com.test.dubboser.CacheService"  cache="true"/>  
  22. </beans>  
注意这里的这一行,实现异步配置

[html]  view plain  copy
  1. <dubbo:reference id="demoServicemy2"   interface="com.test.dubboser.ServiceDemo2">  
  2.      <dubbo:method name="getPerson" async="true" />  
  3.    </dubbo:reference>  

2、消费者代码

[java]  view plain  copy
  1. package com.test.dubbocli;  
  2.   
  3. import java.util.concurrent.ExecutionException;  
  4. import java.util.concurrent.Future;  
  5.   
  6. import org.springframework.context.support.ClassPathXmlApplicationContext;  
  7.   
  8. import com.alibaba.dubbo.rpc.RpcContext;  
  9. import com.test.dubboser.CacheService;  
  10. import com.test.dubboser.Person;  
  11. import com.test.dubboser.ServiceDemo;  
  12. import com.test.dubboser.ServiceDemo2;  
  13.   
  14. public class Main {  
  15.   
  16.     public static void main(String[] args) throws InterruptedException, ExecutionException {  
  17.         run();  
  18.     }  
  19.      public static void run() throws InterruptedException, ExecutionException{  
  20.         ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext(new String[] { "applicationConsumer.xml" });  
  21.         context.start();  
  22.         //ServiceDemo demoServer = (ServiceDemo) context.getBean("demoServicemy");  
  23.         ServiceDemo2 demoServer2 = (ServiceDemo2) context.getBean("demoServicemy2");  
  24.         /*ServiceDemo demoServer3 = (ServiceDemo) context.getBean("demoServicemy3");*/  
  25.         /*String str=demoServer.say("java ---->>>");*/  
  26.         //调用后立即返回null  
  27.         Person person=demoServer2.getPerson("www"13);  
  28.         System.err.println("立即返回的为null:"+person);  
  29.         //拿到调用的Future引用,当结果返回后,会被通知和设置到此Future。  
  30.         Future<Person> pFuture = RpcContext.getContext().getFuture();  
  31.         //如果Person已返回,直接拿到返回值,否则线程wait,等待Person返回后,线程会被notify唤醒。  
  32.         person = pFuture.get();  
  33.         System.out.println("返回的有值"+person);  
  34.         System.out.println(person);  
  35.      }  
  36. }  

3、运行结果

[html]  view plain  copy
  1. 立即返回的为null:null  
  2. future中获取值:name:www age:13  

三、异步返回值,和异步无返回值

你也可以设置是否等待消息发出:(异步总是不等待返回)

1、sent="true" 等待消息发出,消息发送失败将抛出异常。

2、sent="false" 不等待消息发出,将消息放入IO队列,即刻返回。

[html]  view plain  copy
  1. <dubbo:reference id="demoServicemy2"   interface="com.test.dubboser.ServiceDemo2">  
  2.       <dubbo:method name="getPerson" async="true" sent="true" />  
  3.     </dubbo:reference>  
3、 如果你只是想异步,完全忽略返回值,可以配置return="false",以减少Future对象的创建和管理成本:

[html]  view plain  copy
  1. <dubbo:reference id="demoServicemy2"   interface="com.test.dubboser.ServiceDemo2">  
  2.       <dubbo:method name="getPerson" async="true" return="false" />  
  3.     </dubbo:reference>  
设置了return =“false”后我们就获取不到Future对象,当然就获取不到返回值,这样就只有异步调用了服务端方法而没有返回值,执行的流程也就是最开始图形中的1和2 这两步,没有了其他的步骤所以速度也就比较快……


这篇关于淘宝SOA框架dubbo学习(7)--异步调用的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1048608

相关文章

HarmonyOS学习(七)——UI(五)常用布局总结

自适应布局 1.1、线性布局(LinearLayout) 通过线性容器Row和Column实现线性布局。Column容器内的子组件按照垂直方向排列,Row组件中的子组件按照水平方向排列。 属性说明space通过space参数设置主轴上子组件的间距,达到各子组件在排列上的等间距效果alignItems设置子组件在交叉轴上的对齐方式,且在各类尺寸屏幕上表现一致,其中交叉轴为垂直时,取值为Vert

Ilya-AI分享的他在OpenAI学习到的15个提示工程技巧

Ilya(不是本人,claude AI)在社交媒体上分享了他在OpenAI学习到的15个Prompt撰写技巧。 以下是详细的内容: 提示精确化:在编写提示时,力求表达清晰准确。清楚地阐述任务需求和概念定义至关重要。例:不用"分析文本",而用"判断这段话的情感倾向:积极、消极还是中性"。 快速迭代:善于快速连续调整提示。熟练的提示工程师能够灵活地进行多轮优化。例:从"总结文章"到"用

【前端学习】AntV G6-08 深入图形与图形分组、自定义节点、节点动画(下)

【课程链接】 AntV G6:深入图形与图形分组、自定义节点、节点动画(下)_哔哩哔哩_bilibili 本章十吾老师讲解了一个复杂的自定义节点中,应该怎样去计算和绘制图形,如何给一个图形制作不间断的动画,以及在鼠标事件之后产生动画。(有点难,需要好好理解) <!DOCTYPE html><html><head><meta charset="UTF-8"><title>06

学习hash总结

2014/1/29/   最近刚开始学hash,名字很陌生,但是hash的思想却很熟悉,以前早就做过此类的题,但是不知道这就是hash思想而已,说白了hash就是一个映射,往往灵活利用数组的下标来实现算法,hash的作用:1、判重;2、统计次数;

如何在页面调用utility bar并传递参数至lwc组件

1.在app的utility item中添加lwc组件: 2.调用utility bar api的方式有两种: 方法一,通过lwc调用: import {LightningElement,api ,wire } from 'lwc';import { publish, MessageContext } from 'lightning/messageService';import Ca

零基础学习Redis(10) -- zset类型命令使用

zset是有序集合,内部除了存储元素外,还会存储一个score,存储在zset中的元素会按照score的大小升序排列,不同元素的score可以重复,score相同的元素会按照元素的字典序排列。 1. zset常用命令 1.1 zadd  zadd key [NX | XX] [GT | LT]   [CH] [INCR] score member [score member ...]

【机器学习】高斯过程的基本概念和应用领域以及在python中的实例

引言 高斯过程(Gaussian Process,简称GP)是一种概率模型,用于描述一组随机变量的联合概率分布,其中任何一个有限维度的子集都具有高斯分布 文章目录 引言一、高斯过程1.1 基本定义1.1.1 随机过程1.1.2 高斯分布 1.2 高斯过程的特性1.2.1 联合高斯性1.2.2 均值函数1.2.3 协方差函数(或核函数) 1.3 核函数1.4 高斯过程回归(Gauss

【学习笔记】 陈强-机器学习-Python-Ch15 人工神经网络(1)sklearn

系列文章目录 监督学习:参数方法 【学习笔记】 陈强-机器学习-Python-Ch4 线性回归 【学习笔记】 陈强-机器学习-Python-Ch5 逻辑回归 【课后题练习】 陈强-机器学习-Python-Ch5 逻辑回归(SAheart.csv) 【学习笔记】 陈强-机器学习-Python-Ch6 多项逻辑回归 【学习笔记 及 课后题练习】 陈强-机器学习-Python-Ch7 判别分析 【学

系统架构师考试学习笔记第三篇——架构设计高级知识(20)通信系统架构设计理论与实践

本章知识考点:         第20课时主要学习通信系统架构设计的理论和工作中的实践。根据新版考试大纲,本课时知识点会涉及案例分析题(25分),而在历年考试中,案例题对该部分内容的考查并不多,虽在综合知识选择题目中经常考查,但分值也不高。本课时内容侧重于对知识点的记忆和理解,按照以往的出题规律,通信系统架构设计基础知识点多来源于教材内的基础网络设备、网络架构和教材外最新时事热点技术。本课时知识

cross-plateform 跨平台应用程序-03-如果只选择一个框架,应该选择哪一个?

跨平台系列 cross-plateform 跨平台应用程序-01-概览 cross-plateform 跨平台应用程序-02-有哪些主流技术栈? cross-plateform 跨平台应用程序-03-如果只选择一个框架,应该选择哪一个? cross-plateform 跨平台应用程序-04-React Native 介绍 cross-plateform 跨平台应用程序-05-Flutte