快速业务通道

Hessian源码分析和Hack --让Hessian携带远程调用端的信息 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-16
n2Output,Hessian就是解析这两个东西来执行函数调用的。当然,在service里边还有一个重要的语句

Java代码

ServiceContext.begin(req, serviceId, objectId);

这个函数有点奇怪,我每次到这里serviceId和objectId都是空,不知道是不是历史遗留问题还存在这两个参数。

进去这个类看看

Java代码

public class ServiceContext {   private static final ThreadLocal _localContext = new ThreadLocal();   private ServletRequest _request;   private String _serviceName;   private String _objectId;   private int _count;   private HashMap _headers = new HashMap();   private ServiceContext()   {   }   /**   * Sets the request object prior to calling the service''s method.   *   * @param request the calling servlet request   * @param serviceId the service identifier   * @param objectId the object identifier   */   public static void begin(ServletRequest request,         String serviceName,         String objectId)    throws ServletException   {    ServiceContext context = (ServiceContext) _localContext.get();    if (context == null) {     context = new ServiceContext();     _localContext.set(context);    }    context._request = request;    context._serviceName = serviceName;    context._objectId = objectId;    context._count++;   }   /**   * Returns the service request.   */   public static ServiceContext getContext()   {    return (ServiceContext) _localContext.get();   }   /**   * Adds a header.   */   public void addHeader(String header, Object value)   {    _headers.put(header, value);   }   /**   * Gets a header.   */   public Object getHeader(String header)   {    return _headers.get(header);   }   /**   * Gets a header from the context.   */   public static Object getContextHeader(String header)   {    ServiceContext context = (ServiceContext) _localContext.get();    if (context != null)     return context.getHeader(header);    else     return null;   }   /**   * Returns the service request.   */   public static ServletRequest getContextRequest()   {    ServiceContext context = (ServiceContext) _localContext.get();    if (context != null)     return context._request;    else     return null;   }   /**   * Returns the service id, corresponding to the pathInfo of the URL.   */   public static String getContextServiceName()   {    ServiceContext context = (ServiceContext) _localContext.get();    if (context != null)     return context._serviceName;    else     return null;   }   /**   * Returns the object id, corresponding to the ?id= of the URL.   */   public static String getContextObjectId()   {    ServiceContext context = (ServiceContext) _localContext.get();    if (context != null)     return context._objectId;    else     return null;   }   /**   * Cleanup at the end of a request.   */   public static void end()   {    ServiceContext context = (ServiceContext) _localContext.get();    if (context != null && --co

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号