淘宝SOA框架dubbo学习(9)--事件通知

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

package com.alibaba.dubbo.demo;

public interface DemoService {
    String sayHello(String name);

    Person get(int id);
}
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、客户端代码

package com.alibaba.dubbo.demo;

public interface Nofify {
    public void onreturn(Person msg, Integer id);

    public void onthrow(Throwable ex, Integer id);
}
import java.util.HashMap;
import java.util.Map;

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

public class NofifyImpl implements Nofify {
    public Map<Integer, Person> ret = new HashMap<Integer, Person>();
    public Map<Integer, Throwable> errors = new HashMap<Integer, Throwable>();

    public void onreturn(Person msg, Integer id) {
        System.out.println("onreturn:" + msg);
        ret.put(id, msg);
    }

    public void onthrow(Throwable ex, Integer id) {
        errors.put(id, ex);
    }
}
import java.util.Map;

import org.springframework.context.support.ClassPathXmlApplicationContext;

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

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();

        // 事件通知 示例
        DemoService demoService = (DemoService) context.getBean("demoService");
        NofifyImpl notify = (NofifyImpl) context.getBean("demoCallback");
        int requestId1 = 1;
        Person ret1 = demoService.get(requestId1);
        int requestId2 = 2;
        Person ret2 = demoService.get(requestId2);
        int requestId3 = 3;
        Person ret3 = demoService.get(requestId3);

        System.out.println("查看返回结果:");

        for (Map.Entry<Integer, Person> kv : notify.ret.entrySet()) {
            System.out.println(kv.getValue());
        }
    }
}

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:method name="get" onreturn = "demoCallback.onreturn" onthrow="demoCallback.onthrow" />
    </dubbo:reference>
 
    <!-- 生成远程服务代理 -->
    <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" />
    
	<dubbo:reference id="callbackService" interface="com.alibaba.dubbo.demo.CallbackService" />

	<bean id ="demoCallback" class = "NofifyImpl" />

</beans>

4、服务提供端代码

package com.alibaba.dubbo.demo.provider;

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

public class DemoServiceImpl implements DemoService {
    @Override
    public String sayHello(String name) {
        return "Hello " + name + "==2";
    }

    @Override
    public Person get(int id) {
        Person persion = new Person();
        persion.setAge(id);
        persion.setName("hanyiyi011");
        return persion;
    }
}

5、服务提供端配置文件

<?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" />
    
	<bean id="callbackService" class="com.alibaba.dubbo.demo.provider.CallbackServiceImpl" />
	<dubbo:service interface="com.alibaba.dubbo.demo.CallbackService" ref="callbackService" connections="1" callbacks="1000">
    	<dubbo:method name="addListener">
        	<dubbo:argument index="1" callback="true" />
        	<!--也可以通过指定类型的方式-->
        	<!--<dubbo:argument type="com.alibaba.dubbo.demo.CallbackListener" callback="true" />-->
    	</dubbo:method>
	</dubbo:service>

</beans>

6、客户端控制台输出:

onreturn:Person [age=1, name=hanyiyi011]
onreturn:Person [age=2, name=hanyiyi011]
onreturn:Person [age=3, name=hanyiyi011]
查看返回结果:
Person [age=1, name=hanyiyi011]
Person [age=2, name=hanyiyi011]
Person [age=3, name=hanyiyi011]
时间: 2024-12-19 12:14:32

淘宝SOA框架dubbo学习(9)--事件通知的相关文章

淘宝SOA框架dubbo学习(2)--搭建Zookeeper注册中心服务

淘宝SOA框架dubbo学习(1) http://my.oschina.net/hanshubo/blog/374974 1.下载 Zookeeper 下载页面地址: http://www.apache.org/dist/zookeeper/zookeeper-3.4.6/ 注:下面步骤,windows和linux下几乎没什么太大区别 2.解压缩后进入 C:\zookeeper-3.4.6 目录结构如下图 3.进入conf目录 备份zoo_sample.cfg文件,然后将zoo_sample.c

淘宝SOA框架dubbo学习(3)--搭建监控中心

紧接上一篇,继续我的dubbo的学习之旅 1.下载监控中心dubbo服务安装包 下载地址: http://code.alibabatech.com/mvn/releases/com/alibaba/dubbo-monitor-simple/2.4.1/dubbo-monitor-simple-2.4.1-assembly.tar.gz 注:此地址,可能下载不了,我是群共享文件里,下载的 2.解压缩后,编辑conf/dubbo.properties 内容如下: ? 1 2 3 4 5 6 7 8

淘宝SOA框架dubbo学习(5)--结果缓存

1.客户端和服务提供端共用接口类 ? 1 2 3 4 5 package com.alibaba.dubbo.demo; public interface CacheService {     String findCache(String id); } 2.服务提供端接口实现类 ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 package com.alibaba.dubbo.demo.provider; import java.util.conc

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

直接上代码: 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

淘宝SOA框架dubbo学习(1)--first demo

部署开发,需要三部分:服务提供者.服务容器.服务消费者 本人用 eclipse 开发 1.服务提供者jar生成 A.项目截图 B.源码: ? 1 2 3 4 5 package com.alibaba.dubbo.demo; public interface DemoService {     String sayHello(String name); } ? 1 2 3 4 5 6 7 8 9 package com.alibaba.dubbo.demo.provider; import co

淘宝SOA框架dubbo学习(4)--参数验证

1.由于没用maven,和对dubbo不是很了解的原因,这次,总因为jar包不对,而导致:dubbo客户端程序,启动不起来 所以决定:将原来用过的所有jar包全部去,将dubbo-demo-provider-2.5.4-SNAPSHOT/lib下的所有jar包全部导入项目中 一切就OK了 2.服务消费者代码 ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34

淘宝SOA框架dubbo学习(1)

部署开发,需要三部分:服务提供者.服务容器.服务消费者 本人用 eclipse 开发 1.服务提供者jar生成 A.项目截图 B.源码: package com.alibaba.dubbo.demo; public interface DemoService { String sayHello(String name); } package com.alibaba.dubbo.demo.provider; import com.alibaba.dubbo.demo.DemoService; pu

淘宝SOA框架dubbo学习(8)--参数回调

1.服务提供端及客户端共享代码 package com.alibaba.dubbo.demo; public interface CallbackService {     void addListener(String key, CallbackListener listener); } package com.alibaba.dubbo.demo; public interface CallbackListener {     void changed(String msg); } 2.客户

淘宝SOA框架dubbo学习(6)--回声测试

由于用例比较简单,直接上代码吧! import org.springframework.context.support.ClassPathXmlApplicationContext; import com.alibaba.dubbo.demo.DemoService; import com.alibaba.dubbo.rpc.service.EchoService; public class Consumer {     /**      * @param args      * @throws