 鲜花( 2)  鸡蛋( 0)
|
current_session_context_class 主要是用来配置当前 data transaction session bind to what" F; A) k7 D4 g0 P$ D# g# ^
基本参数:
+ w! m1 \) o0 j% y7 Wjta | thread | managed | custom.Class# E! n X: a) S# H' _. q. R- F
主要是配合4 D" C7 s8 `5 Y; I
SessionFactory.getCurrentSession(); N: K4 @; u- [0 r, ]
来用的.% f9 c' e+ L& M( r. d, h- k
Thread 指自动绑定到当前进程,managed 是在有些managed environment 如果使用 container-managed transactions (CMT) , 需要自己bind 和 unbind,这样 getCurrentSession() 才可能返回正确,, p+ J6 |, z# G3 \. p
Web application 状况下,每一个HttpRequest 都是独立thread, 所以可以在BeginRequest的时候bind, 在EndRequest 的时候Unbind, 这样就是可以使用getCurrentSession(), 例如:8 s$ Z/ S3 |! ?* J
context.BeginRequest += OpenSession;
) t- ?8 l2 \: X) A2 C.Bind(HttpContext.Current, SessionFactory.OpenSession()). R( S* I1 Z6 _( [
. ~# k1 m. t1 o V6 e9 n
//do transaction
4 K; a, q& f3 e2 J( Y* @- {$ xgetCurrentSession().Submit();! G$ ^' \+ H. A( o3 h* T, z0 a7 l( @, k
getCurrentSession().RollBack();$ E& X* Y2 x6 p7 N$ y
...
5 ], P8 G4 [( `5 J. nUnbind(HttpContext.Current, SessionFactory)
6 Q% }- x1 I5 `# }4 [
9 Q: s3 K' v9 A3 Rcontext.EndRequest += CloseSession;
. v) y8 h/ ~& \! j& n/ ^" ]! B, C3 c
如果配置不对,getCurrentSession() 会出错。但是不会引起application 不稳定,查查别的地方吧。 |
|