Dubbo服务者

Stella981
• 阅读 486

创建代理对象

com.alibaba.dubbo.config.ServiceConfig#export

通过消费者export()方法可以找到以上方法,消费者需要根据配置的接口生成代理对象。 ###生成Invoker Dubbo服务者 Dubbo服务者

以上通过工厂生成服务者的Invoker,Wrapper.getWrapper里面通过接口生成新Wrapper及接口的实现。
生成的具体代码
public class AClass$sw1 extends Wrapper {

    public static String[] pns;
    public static Map pts;
    public static String[] mns;
    public static String[] dmns;
    public static Class[] mts0;
    public static Class[] mts1;
    

    public AClass$sw1() {
    }
    
    public String[] getPropertyNames(){ return pns; }
    
    public boolean hasProperty(String n){ return pts.containsKey(n); }
    
    public Class getPropertyType(String n){ return (Class)pts.get(n); }
    
    public String[] getMethodNames(){ return mns; }
    
    public String[] getDeclaredMethodNames(){ return dmns; }
    
    public void setPropertyValue(Object o, String n, Object v){ 
     AClass w; 
     try{ 
             w = ((AClass)o); 
     }catch(Throwable e){ 
             throw new IllegalArgumentException(e); 
     }
     if( n.equals("field1") ){ 
             w.field1=((Boolean) v).booleanValue(); 
             return; 
     }
     if( n.equals("field2") ){ 
             w.field2=((Boolean) v).booleanValue(); 
             return; 
     }
     throw new NoSuchPropertyException("Not found property $2 filed or setter method in class AClass."); 
    }
     
    public Object getPropertyValue(Object o, String n){
        AClass w; 
        try{ 
            w = ((AClass)o); 
        }catch(Throwable e){ 
            throw new IllegalArgumentException(e); 
        }
        if( n.equals("field1") ){ 
            return ($w)w.field1; 
        }
        if( n.equals("field2") ){ 
            return ($w)w.field2; 
        }
        // getField11
        if( n.equals("field11") ){ 
            return ($w)w.getField11(); 
        }
        // isField21|hasField21|canField21
        if( n.equals("field21") ){ 
            return ($w)w.isField21(); 
        }
        throw new NoSuchPropertyException("Not found property $2 filed or setter method in class AClass."); 
    }
    
    public Object invokeMethod(Object o, String n, Class[] p, Object[] v) throws InvocationTargetException {
        AClass w; 
        try{ 
            w = ((AClass)o); 
        }catch(Throwable e){ 
            throw new IllegalArgumentException(e); 
        }
        try{
            if( "method1".equals( n ) && p.length ==  &&  p[0].getName().equals("Boolean") &&  p[1].getName().equals("Integer") ) { 
             return ($w)w.method1(((Boolean)v[0]).booleanValue(), ((Number)v[1]).intValue());
            }
        } catch(Throwable e) {
             throw new java.lang.reflect.InvocationTargetException(e); 
        }
        throw new NoSuchMethodException("Not found method n in class AClass."); 
    }
}

服务者生成了对应的Invoker,通过DubboProtocol暴露Exporter。

点赞
收藏
评论区
推荐文章
blmius blmius
3年前
MySQL:[Err] 1292 - Incorrect datetime value: ‘0000-00-00 00:00:00‘ for column ‘CREATE_TIME‘ at row 1
文章目录问题用navicat导入数据时,报错:原因这是因为当前的MySQL不支持datetime为0的情况。解决修改sql\mode:sql\mode:SQLMode定义了MySQL应支持的SQL语法、数据校验等,这样可以更容易地在不同的环境中使用MySQL。全局s
Easter79 Easter79
3年前
swap空间的增减方法
(1)增大swap空间去激活swap交换区:swapoff v /dev/vg00/lvswap扩展交换lv:lvextend L 10G /dev/vg00/lvswap重新生成swap交换区:mkswap /dev/vg00/lvswap激活新生成的交换区:swapon v /dev/vg00/lvswap
皕杰报表之UUID
​在我们用皕杰报表工具设计填报报表时,如何在新增行里自动增加id呢?能新增整数排序id吗?目前可以在新增行里自动增加id,但只能用uuid函数增加UUID编码,不能新增整数排序id。uuid函数说明:获取一个UUID,可以在填报表中用来创建数据ID语法:uuid()或uuid(sep)参数说明:sep布尔值,生成的uuid中是否包含分隔符'',缺省为
待兔 待兔
4个月前
手写Java HashMap源码
HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程22
Stella981 Stella981
3年前
KVM调整cpu和内存
一.修改kvm虚拟机的配置1、virsheditcentos7找到“memory”和“vcpu”标签,将<namecentos7</name<uuid2220a6d1a36a4fbb8523e078b3dfe795</uuid
Wesley13 Wesley13
3年前
mysql设置时区
mysql设置时区mysql\_query("SETtime\_zone'8:00'")ordie('时区设置失败,请联系管理员!');中国在东8区所以加8方法二:selectcount(user\_id)asdevice,CONVERT\_TZ(FROM\_UNIXTIME(reg\_time),'08:00','0
Stella981 Stella981
3年前
Dubbo之服务调用
概述Dubbo能够像调用本地服务一样调用远程服务,是依赖于Dubbo的代理机制。业务系统调用的服务方法,使用代理类,代理类里隐藏了远程通信的功能。代理对象会代理到InvokerInvocationHandler上,再调用它属性Invoker_invoke_()方法。这个Invoker是服务引用的过程中由Protocol创建的。比如
Wesley13 Wesley13
3年前
MySQL部分从库上面因为大量的临时表tmp_table造成慢查询
背景描述Time:20190124T00:08:14.70572408:00User@Host:@Id:Schema:sentrymetaLast_errno:0Killed:0Query_time:0.315758Lock_
Stella981 Stella981
3年前
Dubbo消费者
创建代理对象com.alibaba.dubbo.config.ReferenceConfigcreateProxy通过消费者get()方法可以找到以上方法,消费者需要根据配置的接口生成代理对象。协议生成InvokerDubboProtocolpublic<TInvoker<
Python进阶者 Python进阶者
10个月前
Excel中这日期老是出来00:00:00,怎么用Pandas把这个去除
大家好,我是皮皮。一、前言前几天在Python白银交流群【上海新年人】问了一个Pandas数据筛选的问题。问题如下:这日期老是出来00:00:00,怎么把这个去除。二、实现过程后来【论草莓如何成为冻干莓】给了一个思路和代码如下:pd.toexcel之前把这