我的日常

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

动态微博

查看: 1070|回复: 0

如何配置Hibernate中的二级缓存

[复制链接]

279

主题

41

听众

689

金钱

版主

该用户从未签到

跳转到指定楼层
楼主
发表于 2015-07-18 22:13:11 |只看该作者 |倒序浏览
需要启动二级缓存,二级缓存的scope是sessionFactory。也就是说二级缓存的数据可以在由相同SessionFactory创建的多个Session中重用。2 A8 W# G7 E; V, A

6 F8 [& J+ w! \. b8 V2 i6 X首先,要在hibernate.cfg.xml中设置一个cache Provider,hibernate支持多个cache实现,有EHCache,OSCache等。在非分布式环境中可以选择默认的EHCache。添加ehcahe jar9 H/ `7 n) j" O3 t
  1. <dependency>! c! K$ s# Y0 [+ o0 B+ a  e# ]( }
  2.           <groupId>org.hibernate</groupId>" N0 Y2 p. L5 `$ Y9 ]# J4 H
  3.           <artifactId>hibernate-ehcache</artifactId>+ M9 o; W$ {/ a2 K
  4.           <version>4.3.5.Final</version>  Q4 K  T" d; E8 p% o
  5.       </dependency>
复制代码
  1. <hibernate-configuration>7 ^) O, P( N  a
  2.     <session-factory>5 K# i3 T$ v, A3 a7 R
  3.         <property name="connection.driver_class">com.mysql.jdbc.Driver</property>4 }& i& S+ E1 O' z
  4.         <property name="connection.url">jdbc:mysql://localhost/test</property>
    5 C# o, Y: X% W2 m: A7 r
  5.         <property name="connection.username">root</property>$ b$ v8 j. `  f- k
  6.         <property name="connection.password"></property>
    ; Z) b7 l% ]2 Q, b
  7.         <property name="hibernate.dialect">org.hibernate.dialect.MySQL5Dialect</property>
    ; q& |) R3 f; N7 ~
  8.         <property name="hibernate.show_sql">true</property>' d& F" Y: z5 k4 |+ L
  9.         <property name="hibernate.hbm2ddl.auto">update</property>9 e% R" C& v7 r6 t0 l1 ?: C
  10.         <property name="hibernate.generate_statistics">true</property>
    & F- ?$ `+ @3 O0 p# D
  11.         <property name="hibernate.cache.region.factory_class">
    ! R: y  \% t: Z, v# U5 G7 U! P' Z1 ]2 D
  12.             org.hibernate.cache.ehcache.EhCacheRegionFactory/ h, O3 {9 ]0 U  I& A8 J3 A+ T
  13.         </property>" s: m8 L' m0 I9 G5 G  |
  14.         <mapping class="com.xinglongjian.entity.hbm.Book2"/>! O  e+ \! f: f1 J
  15. </hibernate-configuration>
复制代码

" T# C( w% S* X  s2 u! w 第二,通过ehcache.xml配置EHCache,该文件放置于classpath的根目录下。可以在该配置文件中设置将不同的对象存储在不同的regions。
  1. <ehcache>9 o, f, O) {+ w
  2. <diskStore path="c:/data/ehcache"/>+ R1 F6 }2 R0 y0 o& W
  3. <defaultCache' x6 H3 Z4 C- ?" d  M8 \
  4.         maxElementsInMemory="10"8 j9 M# h8 i# _& O9 `
  5.         eternal="false"& Q% Q+ H8 z, y9 E$ R1 D
  6.         overflowToDisk="true"- |+ u8 m% s; {
  7.         timeToIdleSeconds="120"
    % f2 i' ^. a: `. d" ]7 X
  8.         timeToLiveSeconds="120"* f0 a" M3 u( s  |$ |" s1 t
  9.         diskPersistent="false"
    9 z9 X7 r( F8 ^* A% v6 h
  10.         diskExpiryThreadIntervalSeconds="120"/>5 y+ D+ e; A( e5 v' B
  11. <cache name="com.xinglongjian.entity.hbm.Book" maxElementsInMemory="10"  eternal="false"
    3 d! h1 U0 l( O& ]* J- b$ B
  12.     overflowToDisk="false" timeToIdleSeconds="120" timeToLiveSeconds="120" diskPersistent="false"/>
    " n. J6 @% X6 Q+ k
  13. </ehcache>
复制代码
第三,设置持久化类
  1. @Entity
      N9 p5 m" [& ]0 \0 v$ Y: _6 @" t) j
  2. @Cacheable
    . w/ G! P6 u. g. a) D
  3. @Cache(usage=CacheConcurrencyStrategy.READ_ONLY,region="com.xinglongjian.entity.hbm.Book")  F, e; y* U0 j! H  r! O! p  k$ h' n% F
  4. public class Book2 {
    4 l+ I0 k( F- I( }& L/ }# W& x% I9 Z
  5.     @Id
    9 S& z2 k. p8 P: H
  6.     @GeneratedValue2 }; r7 U. C: Z
  7.     private int id;
    ) y1 h- V0 C2 {. L- R, l7 r
  8.     private String title;
    : o$ Q* x, \6 I# Z! y
  9.     public String getTitle() {! P9 B0 Y" Z7 B
  10.         return title;7 e, x; k1 D4 Z. I6 g
  11.     }
    $ m1 Z9 x" \) Z1 e
  12.     public void setTitle(String title) {
    1 Q6 i: C! t3 W; }+ v
  13.         this.title = title;
    0 `; L* y. y% ]- Y! O2 e* C  R
  14.     }
    1 h0 K- c( q5 D% v6 L# F0 R7 c$ Q
  15.     public int getId() {) E8 @3 a. R9 {9 F
  16.         return id;3 }0 s  r! r1 i- I
  17.     }
    3 L  H. a2 r# T& u1 D" W
  18.     public void setId(int id) {
    5 v' N: p7 G4 v8 m$ k2 m
  19.         this.id = id;5 T3 e! l. h/ r+ ?' U0 G' d9 q4 G
  20.     }+ C: h3 _5 Y' e" u* _
  21.     @Override( a* F" z' ~8 D) @0 a
  22.     public int hashCode() {8 A) l5 V6 ?, q' e
  23.         final int prime = 31;5 W4 p2 X& r& X) _) H* C/ b& N
  24.         int result = 1;
    8 p7 H* t" p/ i1 x0 a! Z
  25.         result = prime * result + id;
    $ X0 t  s5 ^0 L$ j
  26.         result = prime * result + ((title == null) ? 0 : title.hashCode());
    . [0 M: e2 ?3 m7 I  u
  27.         return result;' `3 W2 \/ n- A3 u# P! E
  28.     }; H( H% t3 p+ f3 |
  29.     @Override! B0 w0 \+ w2 Z1 L" W) F
  30.     public boolean equals(Object obj) {& D4 e: N7 G% G" u  A
  31.         if (this == obj)
    " K- }3 W- o. X5 t! L. H
  32.             return true;
    % I, t0 l+ s& k- O- }& H
  33.         if (obj == null)
    . s  ^7 D; m' o5 F, A: K
  34.             return false;
    - S# H# H" `$ p. O! m1 \) f6 k% W7 q0 G
  35.         if (getClass() != obj.getClass())
    ' ?* E5 a$ @% n9 z; z
  36.             return false;
    2 E8 T7 G) L, |5 ]" y( D; W
  37.         Book2 other = (Book2) obj;* t* `8 T" d: }/ e
  38.         if (id != other.id)0 `# K5 y6 G" _
  39.             return false;1 o: q, N8 q) [3 Q  o& J
  40.         if (title == null) {
    6 }0 _! f& ]& \7 l' L+ Z
  41.             if (other.title != null), I8 }6 v  M1 E
  42.                 return false;' i+ H! Z5 g+ ?% e2 R
  43.         } else if (!title.equals(other.title))
    ( k9 N$ _) q3 ~2 y: F1 z) n8 V  i
  44.             return false;3 V0 j. B9 s; A
  45.         return true;! e) }+ P# C( ~6 _. U  }8 g% d
  46.     }& p( g  F( l  J$ z* U8 x
  47.    
    3 X8 I9 l) E3 n% e( D2 S
  48. }
复制代码
二级缓存的持久化类必须实现equals方法。7 n6 B% t9 q& K
& Y/ y/ O7 S/ [( D
只有在SELECT时才会缓存。
* V1 J8 M: S1 H# h0 T+ Z- n9 N8 ]- R: a4 y
在同一个session里,查询2个不同的对象,会缓存2次,
  1. Session sess=sf.openSession();& I* t1 N: P9 W6 P+ n" L
  2.         Book2 b=(Book2) sess.get(Book2.class, 17);
    4 V: I  d3 P- M, `: J
  3.         System.out.println(b);
    ! W7 O( C( _$ ^/ D4 ?4 }
  4.         assertEquals("spring Recipes", b.getTitle());+ g. x) J" s, x! c- O# k8 w
  5.         Book2 b3=(Book2) sess.get(Book2.class, 18);" v" x& x9 n9 y, a4 ^$ P
  6.         assertEquals("dfad", b3.getTitle());0 s' g* d) g% v" A  V
  7.         sess.close();
    3 K$ _5 h6 c. }4 x' P3 Q$ _. v5 E
  8.         slcs=stat.getSecondLevelCacheStatistics("com.xinglongjian.entity.hbm.Book");- `6 m7 j1 [- {/ |+ ?
  9.         System.out.println(slcs);
复制代码
结果
  1. SecondLevelCacheStatistics[hitCount=0,missCount=2,putCount=2,elementCountInMemory=2,elementC
    4 W- i" p( F2 }" t9 {2 A* e
  2. ountOnDisk=0,sizeInMemory=3948]
复制代码
- Q) B1 e9 w$ o7 K2 a1 K
在同一个session里,查询相同的对象,会先查询一级缓存,一级缓存中有就不会查询二级缓存。
  1. Session sess1=sf.openSession();$ ~8 b$ e7 L. R" A+ f; E5 d' G
  2.         Book2 b1=(Book2) sess1.get(Book2.class, 17);
    , j. y7 M. W1 G/ r' U
  3.         System.out.println(b);
    . `; q7 A8 k/ y  P% U6 T
  4.         Book2 b2=(Book2) sess1.get(Book2.class, 17);
    9 U/ S/ B( n- y6 u7 P9 d1 @: _
  5.         assertEquals("Spring Recipes", b1.getTitle());& g1 C2 `( `& h: {6 X) h
  6.         assertEquals("Spring Recipes", b2.getTitle());
    + w, b# ~4 h1 p
  7.         slcs=stat.getSecondLevelCacheStatistics("com.xinglongjian.entity.hbm.Book");8 U: @7 v8 |' P
  8.         System.out.println(slcs);
复制代码
结果,在新的session中,一级缓存不可用,就会使用二级缓存。
  1. SecondLevelCacheStatistics[hitCount=1,missCount=2,putCount=2,elementCountInMemory=2,elementC
    # Y( ~" G% E% W6 [
  2. ountOnDisk=0,sizeInMemory=3948]
复制代码
完整测试逻辑
  1. @Test7 X4 w+ w& b/ Z% [2 n- v
  2.     public void test2LCache()
    ; a: G; G3 W( m2 R7 J8 B
  3.     {
    0 a% R& @) x8 ]  o6 |# B2 ?
  4.         Statistics stat=sf.getStatistics();//获取stat对象
    % K7 v  F' [  D
  5.         Session sess=sf.openSession();$ _* Q' v- P1 s+ Q- }& }9 q
  6.         Transaction tx=sess.beginTransaction();
    : g, {3 m9 B9 N5 ?( L
  7.         
    2 k  B" Z! q  Q9 x" C# A
  8.         //存储对象,此时不会放到缓存中- P$ L9 E# ]: J* o
  9.         System.out.println("--------------存储对象---------------------------------");
    5 R- G6 t/ e) B" m- I& O# |, j/ F
  10.         Book2 book=new Book2();, I/ t9 u) X* @, k1 @
  11.         book.setTitle("Spring Recipes");
    6 w* H+ i/ e7 b6 w2 p
  12.         sess.saveOrUpdate(book);
    + S- z7 a. [5 @. ~* ?4 ?
  13.         tx.commit();* J$ R- a7 A; i5 ?1 k5 N4 p
  14.         sess.close();
    % `5 c5 f- m8 m# s& A. K9 d
  15.         System.out.println(book);
    . i% A$ U+ ~% G6 p4 O! P# E% G% |6 f
  16.         SecondLevelCacheStatistics slcs=stat.getSecondLevelCacheStatistics("com.xinglongjian.entity.hbm.Book");
    ! t! g( {% F8 u( L/ ^" A
  17.         System.out.println(slcs);
    - u* U% D. {1 ?1 w, e; M' U+ k  c
  18.         Cache cache=sf.getCache();" a1 r- r; J- Q/ [7 v; e
  19.         System.out.println(cache);$ h$ `3 M; y1 p7 j- B3 O
  20.         cache.evictAllRegions();//从所有region中获取数据1 e! O0 `/ c5 `) k
  21.         Map map=slcs.getEntries();4 G& D6 @( O$ m' j5 M% m+ Y- ^) O: D
  22.         System.out.println("Cache entries:"+map.size());1 j% u- t- Y* ]0 T4 d( x
  23.         System.out.println("--------------第一次查询后---------------------------------");
    . m% C5 c' `% a* X
  24.         sess=sf.openSession();/ P7 h# @+ U8 p, I1 f1 y/ H) y
  25.         tx=sess.beginTransaction();* V0 I" x" P+ M2 q# o
  26.         Book2 b1=(Book2) sess.byId(Book2.class).load(book.getId());//第一次查询
    / L% D3 h  p: w6 q
  27.         System.out.println(b1);
    6 e7 w* d) ?/ h# U/ @% W& m
  28.         assertEquals(book, b1);* A5 V! f& x" A! g8 }1 d7 l, ?
  29.         tx.commit();
    7 l. o$ d+ T* {' c- J8 ?
  30.         sess.close();6 S6 y7 n/ C# h: W* k$ L5 B
  31.         slcs=stat.getSecondLevelCacheStatistics("com.xinglongjian.entity.hbm.Book");% }* d: }& ~6 J" n8 i; q3 {& @
  32.         System.out.println(slcs);
    8 X, J- T# m3 a" \$ h; b
  33.         map=slcs.getEntries();1 s6 _9 ]. r0 F4 O, j4 O
  34.         System.out.println(map.size());
    % @1 s7 N$ ~' i  y
  35.         System.out.println("--------------第二次查询后---------------------------------");7 a" M' ^/ {: _9 Q7 R: _% w% L
  36.         sess=sf.openSession();# E+ B$ ]7 j5 ?
  37.         tx=sess.beginTransaction();, w& c# ~! a8 k. w
  38.         Book2 b2=(Book2) sess.byId(Book2.class).load(book.getId());//第二次查询: M( N! [8 s$ h6 u
  39.         System.out.println(b2);
    9 V% j7 S. C3 B# h
  40.         assertEquals(book, b2);2 K& r# _8 X0 s$ g+ e
  41.         tx.commit();# u% W( [) J, Q- K4 U! x! ]
  42.         sess.close();
    / J: S! d+ }& q5 g0 p$ A
  43.         
    : g6 b0 r" a6 u
  44.         slcs=stat.getSecondLevelCacheStatistics("com.xinglongjian.entity.hbm.Book");6 y; Z/ W9 H5 E6 K  A) N" [
  45.         System.out.println(slcs);6 ~( \3 U3 H: o. e
  46.         // this is the initial select
    + V* O  k( v1 A5 Q% \. O+ z
  47.         assertEquals(stat.getSecondLevelCacheMissCount(), 1);. D9 k6 L1 y6 |5 w: d7 W
  48.         // we put one element in the cache from the miss. D- X2 Q: h7 p5 e+ i( I
  49.         assertEquals(stat.getSecondLevelCachePutCount(), 1);
    ; A2 v2 z% [0 C6 ]- p
  50.         // we still didn't hit the cache, because of 1L cache
    ) e/ }# x4 n: _8 h
  51.         assertEquals(stat.getSecondLevelCacheHitCount(), 1);
    ! E- h4 Y  `7 Y8 z/ _3 T
  52.         System.out.println("--------------第三次查询后---------------------------------");8 a2 E; _" \# l* J8 L
  53.         sess=sf.openSession();+ L) H/ A9 w; z- M
  54.         tx=sess.beginTransaction();
    1 v2 L) ?, {* N" y' t: o
  55.         b1=(Book2) sess.byId(Book2.class).load(book.getId());//第三次查询5 A% J: E" {" e( y
  56.         assertEquals(book, b1);
    : R7 m$ E: t$ i# j2 N1 J
  57.         tx.commit();
    ' N+ e" a( F4 C' `! T! U
  58.         sess.close();3 D  w; A/ a2 A) Q3 V- a7 M! s
  59.         
    4 {( ?2 V+ S- Z9 F4 {# D' }
  60.         slcs=stat.getSecondLevelCacheStatistics("com.xinglongjian.entity.hbm.Book");
    3 [0 A* Y0 z) T3 s6 S# m
  61.         System.out.println(slcs);/ R2 i! e& n; Y4 T! M: F, m5 m
  62.         // same miss count (we should hit now)
    8 C0 O& o; @3 H) o" M9 I& a. i
  63.         assertEquals(stat.getSecondLevelCacheMissCount(), 1);& z! `# j* d& P: S' s( U# E. R
  64.         // same put count (we didn't put anything new)& o. n. d# ?8 r3 F. B$ k  O
  65.         assertEquals(stat.getSecondLevelCachePutCount(), 1);
    3 D. h" v! b6 ?: {4 Y2 G
  66.         // now we hit the 2L cache for load
    ) ~$ G; B& D" h
  67.         assertEquals(stat.getSecondLevelCacheHitCount(), 2);
    8 n" @! ?3 p4 j
  68.         " w% ?5 h, ?8 m8 ]( R6 c
  69.     }
复制代码
完整测试结果
  1. Hibernate: delete from book21 e  ~2 C$ H/ V' }/ j' n
  2. --------------存储对象---------------------------------
    $ g* e/ n" Q9 n* ~
  3. Hibernate: insert into Book2 (title) values (?)# T( m: `8 K" {% U6 ^
  4. com.xinglongjian.entity.hbm.Book2@521e083b
    8 o3 I0 e* [3 `: \: f7 \
  5. SecondLevelCacheStatistics[hitCount=0,missCount=0,putCount=0,elementCountInMemory=0,elementCountOnDisk=0,sizeInMemory=0]$ N( j$ v) Q! u8 T) O/ H9 K6 Q
  6. org.hibernate.internal.CacheImpl@4830f6
    * A% e# V' R% L4 h
  7. Cache entries:0
    + G. e+ e9 ]4 T+ z
  8. --------------第一次查询后---------------------------------+ E6 R$ Z& O! K& ~
  9. Hibernate: select book2x0_.id as id1_0_0_, book2x0_.title as title2_0_0_ from Book2 book2x0_3 G* c, Y% p* C7 n3 }
  10. where book2x0_.id=?
    ; m% l( g2 i/ M# `+ [: m; K) @
  11. com.xinglongjian.entity.hbm.Book2@521e083b
    " o3 a$ G, S# Y) R% ^
  12. SecondLevelCacheStatistics[hitCount=0,missCount=1,putCount=1,elementCountInMemory=1,elementC- z, m' W2 C  w8 O' c2 R* r. y
  13. ountOnDisk=0,sizeInMemory=1979]
    " y% U5 D" u, Z- u$ z
  14. 1
    ; C+ A! p0 ?  l5 Z+ l4 T
  15. --------------第二次查询后---------------------------------) a* Z, C$ e7 O. R
  16. com.xinglongjian.entity.hbm.Book2@521e083b
    " Y& T( \2 M* Y" C+ T! ~
  17. SecondLevelCacheStatistics[hitCount=1,missCount=1,putCount=1,elementCountInMemory=1,elementC6 F$ A8 G/ m% I$ j
  18. ountOnDisk=0,sizeInMemory=1979]1 E; H! Y- Z; l9 E, r6 j' E
  19. --------------第三次查询后---------------------------------' `3 ~$ i0 S( I; b6 Q
  20. SecondLevelCacheStatistics[hitCount=2,missCount=1,putCount=1,elementCountInMemory=1,elementC
    ! {7 {- x: F( ?) ?, c: U0 j5 R
  21. ountOnDisk=0,sizeInMemory=1979]
复制代码

7 B# e. L* b' a1 ~; c

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


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

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

   

关闭

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

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