博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ibatis.net 多线程的调试
阅读量:5051 次
发布时间:2019-06-12

本文共 5059 字,大约阅读时间需要 16 分钟。

ibatis是一个挺不错的半自动orm框架,从java移植到c#

在ibatis中是支持多线程操作的,但是这几天的使用过程中发现就框架本身任然存在一些问题,可能会让你对多线程的使用并不是那么的顺利

在我们查询了ibatis的帮助手册后,不难找到这样一段内容

由此我们可以知道在使用sqlmapper时,我们对sqlmapper.sessionstore进行初始化HybridWebThreadSessionStore便可以进行多线程的使用,原理是什么呢?让我们下面来进行分析

首先ibatis定义了ISqlMapper接口,在接口中定义了一系列的数据库操作,ibaits本身给出了ISqlmapper接口的实现SqlMapper。

在我们的代码中,我们仅仅需要调用SqlMapper的方法即可完成对数据库的各种DML、DQL操作

看一下SqlMapper的初始化我们会发现

1 public SqlMapper(IObjectFactory objectFactory, 2             AccessorFactory accessorFactory)  3         { 4             _typeHandlerFactory = new TypeHandlerFactory(); 5             _dbHelperParameterCache = new DBHelperParameterCache(); 6             _objectFactory = objectFactory; 7             _accessorFactory = accessorFactory; 8  9             _dataExchangeFactory = new DataExchangeFactory(_typeHandlerFactory, _objectFactory, accessorFactory);10             _id = HashCodeProvider.GetIdentityHashCode(this).ToString();11             _sessionStore = SessionStoreFactory.GetSessionStore(_id);12         }

在第11行代码进行了_sessionStore 的复制,跟踪代码进入GetSessionStore方法

1 static public ISessionStore GetSessionStore(string sqlMapperId) 2         { 3             if (System.Web.HttpContext.Current == null) 4             { 5                 return new CallContextSessionStore(sqlMapperId); 6             } 7             else 8             { 9                 return new WebSessionStore(sqlMapperId);10             }11         }

可以很容易判断出当System.Web.HttpContext.Current为null时候通过CallContextSessionStore方法获取sessionstore,反之则通过WebSessionStore获取

这里我们总结一下,其实sqlmapper的_sessionStore 类型为ISessionStore,而前面根据帮助文档我们知道的HybridWebThreadSessionStore类以及GetSessionStore方法中提到的CallContextSessionStore类、WebSessionStore类都是对抽象类AbstractSessionStore的继承,而AbstractSessionStore抽象类则是对ISessionStore的实现,这样我们知道这里所有的动作其实都是对_sessionStore 赋值,至于具体使用哪一个实现类是根据情景的不同而初始化不同的实现类,不难发现,其实是ibatis在这里采用策略模式的实现方式。

这个时候我们来看一下从ISessionStore到具体的三个实现类中的代码

首先是ISessionStore接口代码

1     public interface ISessionStore 2     { 3         ///  4         /// Get the local session 5         ///  6         ISqlMapSession LocalSession 7         { 8             get;  9         }10 11         /// 12         /// Store the specified session.13         /// 14         /// The session to store15         void Store(ISqlMapSession session);16 17         /// 18         /// Remove the local session from the storage.19         /// 20         void Dispose();21     }

可以看到在6-9行,这里的ISqlMapSession即是我们需要了解的核心,不同的实现类对该属性的返回采用了不同的方式

CallContextSessionStore

1 public override ISqlMapSession LocalSession2         {3             get { return CallContext.GetData(sessionName) as SqlMapSession; }4         }

WebSessionStore

1   public override ISqlMapSession LocalSession2         {3             get4             {5                 HttpContext currentContext = ObtainSessionContext();6                 return currentContext.Items[sessionName] as SqlMapSession;7             }8         }

HybridWebThreadSessionStore

1 public override ISqlMapSession LocalSession 2         { 3             get 4             { 5                 HttpContext currentContext = HttpContext.Current; 6                 if (currentContext == null) 7                 { 8                     return CallContext.GetData(sessionName) as SqlMapSession;  9                 }10                 return currentContext.Items[sessionName] as SqlMapSession;11             }12         }

下面我们着重分析WebSessionStore的实现方式,由于在初始化实现类的过程判断中,我们不难发现当System.Web.HttpContext.Current不为null时,选择通过WebSessionStore来进行实例化,而WebSessionStore中的LocalSession属性我们可以看到直接通过HttpContext currentContext = ObtainSessionContext();对currentContext 进行赋值,跟踪ObtainSessionContext方法

1   private static HttpContext ObtainSessionContext()2         {3             HttpContext currentContext = HttpContext.Current;4             if (currentContext == null)5             {6                 throw new IBatisNetException("WebSessionStore: Could not obtain reference to HttpContext");7             }8             return currentContext;9         }

终于找到了WebSessionStore: Could not obtain reference to HttpContext异常的来源,很奇怪的是在之前的实例化的过程中我们其实已经对HttpContext.Current进行过判断,这里怎么会出现为null的情况呢?

有这个疑问的话具体可以查看http://www.cnblogs.com/fish-li/archive/2013/04/06/3002940.html这里就不作详细的解释了

好了,问题终于找到了,下面就是如何去解决该问题,按照文档的说法是在使用sqlMap时通过sqlMap.SessionStore = new IBatisNet.DataMapper.SessionStore.HybridWebThreadSessionStore(sqlMap.Id);直接对SessionStore 进行赋值,但是问题来了,通过这样的方式在后面我们会发现还是会走到WebSessionStore中出现WebSessionStore: Could not obtain reference to HttpContext的异常,所以我在看了源码之后,发现其实WebSessionStore仅仅只是从currentContext.Items[sessionName]获取已经存储的SessionStore ,这样就好办了,于是我通过修改源码的方式彻底解决了这个问题

1 static public ISessionStore GetSessionStore(string sqlMapperId) 2         { 3             if (System.Web.HttpContext.Current == null) 4             { 5                 return new CallContextSessionStore(sqlMapperId); 6             } 7             else 8             { 9                 //return new WebSessionStore(sqlMapperId);10                 return new HybridWebThreadSessionStore(sqlMapperId);11             }12         }

 

转载于:https://www.cnblogs.com/poppinjack/p/4723598.html

你可能感兴趣的文章
浅谈叶小钗面试的几个问题
查看>>
进程间通信方式总结
查看>>
FCC 中级算法题 Finders Keepers
查看>>
Python之环境搭建与pycharm的配置django安装及MySQL数据库配置
查看>>
处理选中图片
查看>>
SpringBoot入门教程(十九)@ControllerAdvice+@ExceptionHandler全局捕获Controller异常
查看>>
iOS - 登陆、注销、修改密码
查看>>
给View添加阴影 和边框
查看>>
触发器创建及Navicat中使用
查看>>
Highmaps网页图表教程之图表配置项结构与商业授权
查看>>
JSON解析的成长史——原来还可以这么简单
查看>>
页面适应UIWebView大小,不出现横向滚动条[转]
查看>>
AFNetWorking 上传功能使用及源码分析
查看>>
LOJ2540 PKUWC2018 随机算法 状压DP
查看>>
ASP.NET MVC 入门4、Controller与Action【转】
查看>>
android 自己创建一个凝视模板
查看>>
HDU5754 Life Winner Bo(博弈)
查看>>
常见的网页图像格式有 ico、jpg、png、gif,说说他们各自的应用场景
查看>>
Javascript 时间与日期的相关属性方法【转】
查看>>
GridView
查看>>