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

本文介绍了一个基于 Dubbo 的 Java 微服务框架的异步调用示例,包括服务提供者与消费者两端的代码实现及配置。通过示例展示了如何设置异步调用、是否等待消息发送完成及忽略返回值等高级特性。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

直接上代码:

1、服务提供端及客户端共享代码

package com.alibaba.dubbo.demo;

public interface DemoService2 {
    Person getPersion(String name);
}

package com.alibaba.dubbo.demo;

import java.io.Serializable;

public class Person implements Serializable {
    private static final long serialVersionUID = -8994496944734041861L;
    private int age;
    private String name;

    public int getAge() {
        return age;
    }

    public void setAge(int age) {
        this.age = age;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    @Override
    public String toString() {
        return "Person [age=" + age + ", name=" + name + "]";
    }
}

2、客户端代码

import java.util.concurrent.Future;

import org.springframework.context.support.ClassPathXmlApplicationContext;

import com.alibaba.dubbo.demo.DemoService2;
import com.alibaba.dubbo.demo.Person;
import com.alibaba.dubbo.rpc.RpcContext;

public class Consumer {

    /**
     * @param args
     * @throws Exception
     */
    public static void main(String[] args) throws Exception {
        ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext(
                new String[] { "classpath:consumer.xml" });
        context.start();

        // 异步调用示例
        DemoService2 demoService2 = (DemoService2) context.getBean("demoService2");

        Person p = demoService2.getPersion("hanshubo");
        System.out.println(p);

        Future<Person> pFuture = RpcContext.getContext().getFuture();

        p = pFuture.get();
        System.out.println(p);
    }
}

3、客户端配置文件

<?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="consumer-of-helloworld-app"  />
 
    <!-- 使用zookeeper注册中心暴露发现服务地址 -->
    <dubbo:registry address="zookeeper://127.0.0.1:2181" />
 
    <!-- 生成远程服务代理 -->
    <dubbo:reference id="demoService" interface="com.alibaba.dubbo.demo.DemoService" retries="2" />
 
    <!-- 生成远程服务代理 -->
    <dubbo:reference id="validationService" interface="com.alibaba.dubbo.demo.ValidationService"
    	 retries="2" validation="true"
    	  />
 
    <!-- 生成远程服务代理 -->
    <dubbo:reference id="demoService2" interface="com.alibaba.dubbo.demo.DemoService2" async="true" />
	
</beans>

注:重点关注下面这行代码,就OK啦

async="true"

4、服务提供端代码

package com.alibaba.dubbo.demo.provider;

import com.alibaba.dubbo.demo.DemoService2;
import com.alibaba.dubbo.demo.Person;

public class DemoService2Impl implements DemoService2 {
    @Override
    public Person getPersion(String name) {
        Person r = new Person();
        r.setAge(123);
        r.setName(name);
        return r;
    }
}

4、服务提供端配置文件

<?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"  />
 
    <!-- 使用zookeeper注册中心暴露发现服务地址 -->
    <dubbo:registry address="zookeeper://127.0.0.1:2181" />
 
    <!-- 用dubbo协议在20880端口暴露服务 -->
    <dubbo:protocol name="dubbo" port="20880" />
 
    <!-- 声明需要暴露的服务接口 -->
    <dubbo:service interface="com.alibaba.dubbo.demo.DemoService" ref="demoService" />
 
    <!-- 和本地bean一样实现服务 -->
    <bean id="demoService" class="com.alibaba.dubbo.demo.provider.DemoServiceImpl" />
 
    <!-- 声明需要暴露的服务接口 -->
    <dubbo:service interface="com.alibaba.dubbo.demo.ValidationService" ref="validationService" />
 
    <!-- 和本地bean一样实现服务 -->
    <bean id="validationService" class="com.alibaba.dubbo.demo.provider.ValidationServiceImpl" />
    
    <bean id="cacheService" class="com.alibaba.dubbo.demo.provider.CacheServiceImpl" />
	
	<dubbo:service interface="com.alibaba.dubbo.demo.CacheService" ref="cacheService" />
 
    <!-- 声明需要暴露的服务接口 -->
    <dubbo:service interface="com.alibaba.dubbo.demo.DemoService2" ref="demoService2" />
 
    <!-- 和本地bean一样实现服务 -->
    <bean id="demoService2" class="com.alibaba.dubbo.demo.provider.DemoService2Impl" />
 
</beans>


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

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

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

  • <dubbo:method name="findFoo" async="true" sent="true" />

6、如果你只是想异步,完全忽略返回值,可以配置return="false",以减少Future对象的创建和管理成本:

<dubbo:method name="findFoo" async="true" return="false" />


转载于:https://my.oschina.net/hanshubo/blog/378111

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值