`
goon
  • 浏览: 181127 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

hessian——客户端动态代理

阅读更多

客户端代码:

String urlString = "http://localhost/hessian/testService";
		HessianProxyFactory factory = new HessianProxyFactory();
		TestService testService = (TestService)factory.create(TestService.class,urlString);

 

 public Object create(Class<?> api, URL url, ClassLoader loader)
  {
    if (api == null)
      throw new NullPointerException("api must not be null for HessianProxyFactory.create()");
    InvocationHandler handler = null;

    handler = new HessianProxy(url, this, api);

    return Proxy.newProxyInstance(loader,
                                  new Class[] { api,
                                                HessianRemoteObject.class },
                                  handler);
  }

 handler = new HessianProxy(url, this, api);是关键,利用java动态代理,创建了一个HessianProxy对象来代理对Service对象的方法调用,具体HessianProxy的代理方式就是通过网络连接,调用远程的方法(见

hessian——源码分析(二)------ HessianProxy《转》

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics