我的日常

登录/注册
您现在的位置:论坛 盖世程序员(我猜到了开头 却没有猜到结局) 盖世程序员 > 如何配置Hibernate中的二级缓存
总共48087条微博

动态微博

查看: 1089|回复: 0

如何配置Hibernate中的二级缓存

[复制链接]

279

主题

41

听众

689

金钱

版主

该用户从未签到

跳转到指定楼层
楼主
发表于 2015-07-18 22:13:11 |只看该作者 |倒序浏览
需要启动二级缓存,二级缓存的scope是sessionFactory。也就是说二级缓存的数据可以在由相同SessionFactory创建的多个Session中重用。% R9 i7 Q) O+ j3 e$ \
* L7 z9 g0 s; q9 {% d6 v
首先,要在hibernate.cfg.xml中设置一个cache Provider,hibernate支持多个cache实现,有EHCache,OSCache等。在非分布式环境中可以选择默认的EHCache。添加ehcahe jar
! C7 N6 i2 U$ D3 _. i
  1. <dependency>0 Q) m. Q$ f+ T7 A# S9 L$ T# e
  2.           <groupId>org.hibernate</groupId>+ o8 t4 Y* Q% @0 l. {5 T* G
  3.           <artifactId>hibernate-ehcache</artifactId>
    1 @3 p9 }; R2 a: S. P
  4.           <version>4.3.5.Final</version>
    ( }  ~1 \! }# D6 v: u$ s) ?/ d
  5.       </dependency>
复制代码
  1. <hibernate-configuration>
    & i# T& l) Q3 M$ k" Y( `" A+ t
  2.     <session-factory>
    ' ?: |- H6 z" R
  3.         <property name="connection.driver_class">com.mysql.jdbc.Driver</property>
    & W& ?" s! \, C/ L/ y* t- E
  4.         <property name="connection.url">jdbc:mysql://localhost/test</property>
    2 L; w, q2 h3 D2 Q) A: m8 a
  5.         <property name="connection.username">root</property>. ^8 o9 x! |1 O9 z" _9 u/ a3 ^
  6.         <property name="connection.password"></property>  B+ [, @" O' G+ p7 w) m0 c
  7.         <property name="hibernate.dialect">org.hibernate.dialect.MySQL5Dialect</property>
    ' A* b" Z# k( ^) ~# @  A; ]( V
  8.         <property name="hibernate.show_sql">true</property>$ l/ Z5 h! X  T" K
  9.         <property name="hibernate.hbm2ddl.auto">update</property>
    ! O1 a1 V$ c3 U% j3 b& l$ s
  10.         <property name="hibernate.generate_statistics">true</property>2 N) i) O' |$ v6 a& C% B  s
  11.         <property name="hibernate.cache.region.factory_class">0 H0 I! p' \" N- `
  12.             org.hibernate.cache.ehcache.EhCacheRegionFactory
    4 p- A' Q: T, z5 N
  13.         </property>
    + O: W! I& X/ S# U4 {( o" n
  14.         <mapping class="com.xinglongjian.entity.hbm.Book2"/>$ W- t0 t2 z8 Y! g0 T' N
  15. </hibernate-configuration>
复制代码
" ^0 S8 n% i6 |2 H) f7 U
第二,通过ehcache.xml配置EHCache,该文件放置于classpath的根目录下。可以在该配置文件中设置将不同的对象存储在不同的regions。
  1. <ehcache>
    1 `8 i* M" t2 \8 d7 w7 Z0 Z
  2. <diskStore path="c:/data/ehcache"/>
    + ~% `) T" L: U$ C
  3. <defaultCache
    3 l: U: R- c3 t# E2 f
  4.         maxElementsInMemory="10"
    ; {+ O+ `% N3 D) X- @7 ]
  5.         eternal="false"
    3 ~/ ?7 q/ n4 `6 q! Z" D. H
  6.         overflowToDisk="true": k( E: t" [2 q6 l
  7.         timeToIdleSeconds="120"
    ' d3 m1 E0 J) W/ A7 V
  8.         timeToLiveSeconds="120"2 d( U) u0 ?; j" @, N  n" J6 Z
  9.         diskPersistent="false"
    # r" H; b! q2 B! k5 M: l1 {# U; R
  10.         diskExpiryThreadIntervalSeconds="120"/>
    , I3 c5 S, I  f$ S
  11. <cache name="com.xinglongjian.entity.hbm.Book" maxElementsInMemory="10"  eternal="false" 0 R$ e2 w: l4 J7 {
  12.     overflowToDisk="false" timeToIdleSeconds="120" timeToLiveSeconds="120" diskPersistent="false"/>
    6 u4 g+ O( u7 L, M, P
  13. </ehcache>
复制代码
第三,设置持久化类
  1. @Entity
    " V+ y2 d) T7 H$ i0 f  a. y
  2. @Cacheable
    8 [& S/ ^8 n$ V9 T5 G) E
  3. @Cache(usage=CacheConcurrencyStrategy.READ_ONLY,region="com.xinglongjian.entity.hbm.Book")* o' R! s1 |2 u4 d9 P9 h, E
  4. public class Book2 {* M7 o; c* ]$ d
  5.     @Id
    / m7 _, b4 ~1 ?, r& G) `7 x
  6.     @GeneratedValue+ G7 ^/ [  r  d$ B/ a$ E! d
  7.     private int id;
    / R. k* C0 R0 {& ~' R6 k
  8.     private String title;7 ]. H1 ?7 h0 ^  N% S- N5 C
  9.     public String getTitle() {
    3 V, Q- _# j% h% h% D
  10.         return title;
    + a* y' O, \2 M& f7 `) b9 A: v
  11.     }
    9 s) V4 M) p9 v2 {2 }
  12.     public void setTitle(String title) {
    6 J% a5 A% Y3 m; m
  13.         this.title = title;/ W( Q4 t6 o- f! t( [- s
  14.     }
    4 |' T( q- h) Z# K
  15.     public int getId() {) E- `* @$ ]! T  A5 ~  I) f8 P/ `
  16.         return id;
    7 l8 ~, }5 R" Z* \7 T0 J) Q' N
  17.     }
    " z# X, m4 S8 E; v6 e2 t
  18.     public void setId(int id) {
    + F4 {. K6 n; c  U! p
  19.         this.id = id;
    9 A, t( d! c* w2 |5 U
  20.     }  [% @1 l( P( t0 L
  21.     @Override
    ) A( _# s$ M4 [; ^
  22.     public int hashCode() {+ B# L" _! h6 }% X8 a, ~( z% S" }
  23.         final int prime = 31;
    4 ~7 z; |" k0 f! d) ]! T+ w
  24.         int result = 1;9 ~. \+ S% `# T
  25.         result = prime * result + id;
    3 D: G) P1 Y# c+ w' ]/ W
  26.         result = prime * result + ((title == null) ? 0 : title.hashCode());: B/ ^* r4 T: f% o+ d( C3 w
  27.         return result;8 v8 ?  n  N; Z' f& n0 V
  28.     }4 p% @; G, T- n; p& ~7 Y+ g+ q
  29.     @Override
    9 v5 X7 ?+ l5 ^  m4 h
  30.     public boolean equals(Object obj) {1 z, ?/ f  h: k4 x( P+ l' X- B( _0 b
  31.         if (this == obj)
    $ h9 e7 r, E) E; E- k
  32.             return true;
    ( g& l2 y% U0 @0 O1 V  s
  33.         if (obj == null)9 X# \3 }( I: X: u
  34.             return false;3 E& S/ o- Y/ F& H; X0 Z  R
  35.         if (getClass() != obj.getClass())3 B+ M# W2 `+ r! n" ^
  36.             return false;
    - ^  R, w9 m1 t6 }2 F7 {
  37.         Book2 other = (Book2) obj;+ n3 B+ k2 `/ r
  38.         if (id != other.id)
    7 M7 r5 G4 d( `7 h( f/ K
  39.             return false;4 z  Y/ J$ y3 |- o; I" a5 d
  40.         if (title == null) {
    4 j* S4 m" ^, Q+ }$ U0 a
  41.             if (other.title != null)
    " X4 u0 ]9 s1 p6 Q3 f% d
  42.                 return false;( Z7 w. v7 y* O0 m" X
  43.         } else if (!title.equals(other.title))
    # L. ?( @& ~' E7 q5 i" z
  44.             return false;* I) Q2 x- R/ ~3 X4 g
  45.         return true;8 z0 @3 C8 n( a+ _. c
  46.     }2 y5 i, o  O5 n  B
  47.     1 }3 }. c4 g& a9 E3 i1 O% f% q
  48. }
复制代码
二级缓存的持久化类必须实现equals方法。; ^  U0 [+ @$ k* E7 b

: L; H# b4 y* `- _* C只有在SELECT时才会缓存。
5 t+ L4 e2 I/ i
2 e; ^7 d0 \3 v: ?$ a在同一个session里,查询2个不同的对象,会缓存2次,
  1. Session sess=sf.openSession();
    + k- \9 x5 |8 k9 v' M* c
  2.         Book2 b=(Book2) sess.get(Book2.class, 17);
    6 m$ K) p# h" M6 |( c
  3.         System.out.println(b);
    & @" Z( _# _- j+ x
  4.         assertEquals("spring Recipes", b.getTitle());( k+ c; m' G6 i- E/ B
  5.         Book2 b3=(Book2) sess.get(Book2.class, 18);
    3 C5 u2 b" d: c8 ]. D+ K1 p% A$ B
  6.         assertEquals("dfad", b3.getTitle());, H9 `" M" }8 A8 k' z9 x# T
  7.         sess.close();) b# t* V# d$ m. D0 T
  8.         slcs=stat.getSecondLevelCacheStatistics("com.xinglongjian.entity.hbm.Book");& S  M4 k- [! f5 \$ o4 V
  9.         System.out.println(slcs);
复制代码
结果
  1. SecondLevelCacheStatistics[hitCount=0,missCount=2,putCount=2,elementCountInMemory=2,elementC
    0 S9 d1 z( q' N, W
  2. ountOnDisk=0,sizeInMemory=3948]
复制代码
( D8 K3 h' O; Q, T3 N( w
在同一个session里,查询相同的对象,会先查询一级缓存,一级缓存中有就不会查询二级缓存。
  1. Session sess1=sf.openSession();
    * N( a4 @# j. U9 Y- @+ ]
  2.         Book2 b1=(Book2) sess1.get(Book2.class, 17);
    / d, c: U2 h9 N: {" L4 K  A) t4 l6 h
  3.         System.out.println(b);
    ' E6 V$ z: o; M4 f
  4.         Book2 b2=(Book2) sess1.get(Book2.class, 17);, z& Z& y% `3 `# n) ^5 ^8 s
  5.         assertEquals("Spring Recipes", b1.getTitle());
    2 r; y5 Y$ \+ R/ l3 A+ Z0 f
  6.         assertEquals("Spring Recipes", b2.getTitle());. {5 d) I3 r$ Y/ n7 j+ A
  7.         slcs=stat.getSecondLevelCacheStatistics("com.xinglongjian.entity.hbm.Book");3 a$ l+ L# P6 n' _5 V9 [+ \
  8.         System.out.println(slcs);
复制代码
结果,在新的session中,一级缓存不可用,就会使用二级缓存。
  1. SecondLevelCacheStatistics[hitCount=1,missCount=2,putCount=2,elementCountInMemory=2,elementC
    0 Y" A0 |3 a$ |5 Y/ q! ~
  2. ountOnDisk=0,sizeInMemory=3948]
复制代码
完整测试逻辑
  1. @Test$ \9 J1 c8 z' F+ D1 F' l! r3 y  g' N8 {  w
  2.     public void test2LCache()" N; W; {  e9 C# v% {0 j" O
  3.     {
    / B! P7 q- F0 i3 Y5 z4 h
  4.         Statistics stat=sf.getStatistics();//获取stat对象
    - W" U- V1 k1 Z% E. i
  5.         Session sess=sf.openSession();
    5 N! t2 |5 e# b7 N6 M" Y/ a* ]( n! [
  6.         Transaction tx=sess.beginTransaction();
      ]( f% A& S: a3 m
  7.         $ ~! l- ]/ ~4 ]% ~1 v
  8.         //存储对象,此时不会放到缓存中( G' O- v/ b4 }: r! k
  9.         System.out.println("--------------存储对象---------------------------------");
    ( \$ D/ x5 j3 M( f
  10.         Book2 book=new Book2();
    ; ?$ H& e) Q' G! C
  11.         book.setTitle("Spring Recipes");
    ' X3 e0 G" a; A- g+ T1 ]. a5 d
  12.         sess.saveOrUpdate(book);
    9 S# @' ~3 b( ?  D$ A7 H
  13.         tx.commit();& F* x% d0 i, L  ?9 w8 G
  14.         sess.close();+ L* M! e) i3 [5 X2 t/ [
  15.         System.out.println(book);4 Q* B, j8 `* x& Y
  16.         SecondLevelCacheStatistics slcs=stat.getSecondLevelCacheStatistics("com.xinglongjian.entity.hbm.Book");
    % O  l  t  H$ M6 x5 C
  17.         System.out.println(slcs);, ?/ _% C! s9 U7 Z8 W+ \/ Y9 v
  18.         Cache cache=sf.getCache();
    5 y6 E. m3 I3 U# P" Z
  19.         System.out.println(cache);
    & |3 r: I4 n& {4 ~8 l4 x( O$ g0 e% m
  20.         cache.evictAllRegions();//从所有region中获取数据' F) N+ C+ \2 [! N
  21.         Map map=slcs.getEntries();5 Z) `6 A9 G; q8 u$ [  l/ z
  22.         System.out.println("Cache entries:"+map.size());
    ! W! z* X, l' H% L/ ?! k0 Z! v
  23.         System.out.println("--------------第一次查询后---------------------------------");
    $ D% c$ V: L$ S7 j, a
  24.         sess=sf.openSession();; t, i7 F9 a9 s. N7 o
  25.         tx=sess.beginTransaction();
    ' ~1 b6 E+ U+ G0 n5 @
  26.         Book2 b1=(Book2) sess.byId(Book2.class).load(book.getId());//第一次查询
      j8 w6 e6 p+ |( G2 X
  27.         System.out.println(b1);) F/ r( F. P  B8 U4 Q0 V( `
  28.         assertEquals(book, b1);( V, k& ?8 K+ u! z. m* v3 ^0 O
  29.         tx.commit();4 `' U) n" g, t$ _2 z+ v
  30.         sess.close();
    % K' a1 L" c: J, N# F% M
  31.         slcs=stat.getSecondLevelCacheStatistics("com.xinglongjian.entity.hbm.Book");7 K! Q% Z% f) R2 J# S9 H( |
  32.         System.out.println(slcs);
    2 I+ d+ \& z- o+ e
  33.         map=slcs.getEntries();( v; V  l4 A& O" O8 {+ c8 _$ g9 j
  34.         System.out.println(map.size());
    $ s0 v& m" E) @6 _. Q- J
  35.         System.out.println("--------------第二次查询后---------------------------------");# l( T  C4 S5 y! {
  36.         sess=sf.openSession();
    + O- m; q. v4 g7 \5 w
  37.         tx=sess.beginTransaction();
    8 x. r: {& E4 k' K. L! j
  38.         Book2 b2=(Book2) sess.byId(Book2.class).load(book.getId());//第二次查询
    ) G$ d; V2 B$ K* {% j5 d$ r
  39.         System.out.println(b2);
    0 r- X- {% h: N3 W9 P5 T$ c
  40.         assertEquals(book, b2);
    3 e1 J; l; |( ^6 }8 A6 w
  41.         tx.commit();, W; y& i3 q9 J* t  Z) S% X1 a+ p
  42.         sess.close();, `7 B/ u2 ]. B+ e0 t3 A5 \+ B
  43.         6 g& ]4 G2 O, n0 N2 \/ J* W) N
  44.         slcs=stat.getSecondLevelCacheStatistics("com.xinglongjian.entity.hbm.Book");
    + X9 Z3 H4 e' i
  45.         System.out.println(slcs);# H- `8 r9 z8 m$ u9 m6 Y6 }
  46.         // this is the initial select' U) c; `& ^( j. z1 ^
  47.         assertEquals(stat.getSecondLevelCacheMissCount(), 1);/ O! e0 S% {4 w7 Z. h: b
  48.         // we put one element in the cache from the miss
    4 R8 w) [  P; Z% ~# @
  49.         assertEquals(stat.getSecondLevelCachePutCount(), 1);
    ' e# L  g3 z5 \  ~: h
  50.         // we still didn't hit the cache, because of 1L cache
    " o; j* t5 Y; e  E% A
  51.         assertEquals(stat.getSecondLevelCacheHitCount(), 1);
    - G) y! S8 ^8 R7 j
  52.         System.out.println("--------------第三次查询后---------------------------------");4 T5 W6 Z& j! x0 \7 h/ z
  53.         sess=sf.openSession();
    ' A% i6 L) G" n" k0 J# u5 ^! A) S
  54.         tx=sess.beginTransaction();
    % D6 k. Y( }* z7 B. d) x' f% ~3 }
  55.         b1=(Book2) sess.byId(Book2.class).load(book.getId());//第三次查询
    - p( I- w5 W$ b3 p
  56.         assertEquals(book, b1);
    / r' J; f9 ]9 `! S& e
  57.         tx.commit();
    ! j& c4 M4 n; z. |. Q
  58.         sess.close();* X* B! e" {3 h# Q( z
  59.         
      b' k" i+ Y0 l/ X* }" P
  60.         slcs=stat.getSecondLevelCacheStatistics("com.xinglongjian.entity.hbm.Book");
    & Q: Z9 T+ @! H: A  M- i
  61.         System.out.println(slcs);; d0 S* }! R, `9 t0 E- |2 a
  62.         // same miss count (we should hit now)
    / n; O2 Q6 |2 s) X$ d9 v
  63.         assertEquals(stat.getSecondLevelCacheMissCount(), 1);
    + r) ^/ w0 x2 Z2 u5 D
  64.         // same put count (we didn't put anything new)
    6 n- j: Y- y" J2 {
  65.         assertEquals(stat.getSecondLevelCachePutCount(), 1);0 ?4 O3 m0 n3 ~9 l! \
  66.         // now we hit the 2L cache for load1 N4 z/ T- J; O+ ^! R
  67.         assertEquals(stat.getSecondLevelCacheHitCount(), 2);
    5 H2 t: q0 ]" a% [" P5 C
  68.         
    3 K0 U3 E+ x1 J
  69.     }
复制代码
完整测试结果
  1. Hibernate: delete from book2
    2 P+ Z  I; r! `. l1 p, ]
  2. --------------存储对象---------------------------------
    3 D7 A( t& M2 M3 I  q
  3. Hibernate: insert into Book2 (title) values (?)/ I+ ?' }  m+ u4 y
  4. com.xinglongjian.entity.hbm.Book2@521e083b- o- l3 p5 A- f$ v
  5. SecondLevelCacheStatistics[hitCount=0,missCount=0,putCount=0,elementCountInMemory=0,elementCountOnDisk=0,sizeInMemory=0]0 p/ ]! t. V; X: {$ K! J# r0 \" A" S
  6. org.hibernate.internal.CacheImpl@4830f6
    5 f- t* q! }) |- M
  7. Cache entries:0" t: A9 y% I+ s% @* y3 E: M
  8. --------------第一次查询后---------------------------------
    - k" T+ h* y7 ~: P
  9. Hibernate: select book2x0_.id as id1_0_0_, book2x0_.title as title2_0_0_ from Book2 book2x0_; V9 K5 l% I  ?6 E+ s0 }0 y; c
  10. where book2x0_.id=?
      @  X) J2 R* x6 j2 \4 R2 V
  11. com.xinglongjian.entity.hbm.Book2@521e083b  c# A) j2 l& a5 V
  12. SecondLevelCacheStatistics[hitCount=0,missCount=1,putCount=1,elementCountInMemory=1,elementC
    * C# L# a& T$ S0 W8 [3 M3 p: T
  13. ountOnDisk=0,sizeInMemory=1979]
    * }7 ?) L* Y$ C+ k3 A
  14. 1
    : X- c" j% e& W: }2 ^
  15. --------------第二次查询后---------------------------------: Z. h, f! G& b0 d
  16. com.xinglongjian.entity.hbm.Book2@521e083b$ J9 p2 [7 e! t2 @! m
  17. SecondLevelCacheStatistics[hitCount=1,missCount=1,putCount=1,elementCountInMemory=1,elementC
    " r, ]0 B+ s" f, [0 Q0 i
  18. ountOnDisk=0,sizeInMemory=1979]1 }  O8 D& Z8 z) Z/ S% x
  19. --------------第三次查询后---------------------------------
    % C6 y6 P  W  n( Q3 l% J
  20. SecondLevelCacheStatistics[hitCount=2,missCount=1,putCount=1,elementCountInMemory=1,elementC
    + ?' F& l* g8 w! T) r! L; t% Q
  21. ountOnDisk=0,sizeInMemory=1979]
复制代码
! F$ u0 y$ M# X% U6 r

科帮网 1、本主题所有言论和图片纯属会员个人意见,与本社区立场无关
2、本站所有主题由该帖子作者发表,该帖子作者与科帮网享有帖子相关版权
3、其他单位或个人使用、转载或引用本文时必须同时征得该帖子作者和科帮网的同意
4、帖子作者须承担一切因本文发表而直接或间接导致的民事或刑事法律责任
5、本帖部分内容转载自其它媒体,但并不代表本站赞同其观点和对其真实性负责
6、如本帖侵犯到任何版权问题,请立即告知本站,本站将及时予与删除并致以最深的歉意
7、科帮网管理员和版主有权不事先通知发贴者而删除本文


JAVA爱好者①群:JAVA爱好者① JAVA爱好者②群:JAVA爱好者② JAVA爱好者③ : JAVA爱好者③

快速回复
您需要登录后才可以回帖 登录 | 立即注册

   

关闭

站长推荐上一条 /1 下一条

发布主题 快速回复 返回列表 联系我们 官方QQ群 科帮网手机客户端
快速回复 返回顶部 返回列表