我的日常

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

动态微博

查看: 1068|回复: 0

如何配置Hibernate中的二级缓存

[复制链接]

279

主题

41

听众

689

金钱

版主

该用户从未签到

跳转到指定楼层
楼主
发表于 2015-07-18 22:13:11 |只看该作者 |倒序浏览
需要启动二级缓存,二级缓存的scope是sessionFactory。也就是说二级缓存的数据可以在由相同SessionFactory创建的多个Session中重用。9 B1 e  a: n- Q" W$ {( Q
" \( ?, h5 i9 p
首先,要在hibernate.cfg.xml中设置一个cache Provider,hibernate支持多个cache实现,有EHCache,OSCache等。在非分布式环境中可以选择默认的EHCache。添加ehcahe jar+ A/ y4 S. D6 @
  1. <dependency>. z5 @  H/ z" m" \
  2.           <groupId>org.hibernate</groupId>
    6 d9 @5 g; c+ |; }$ m& |
  3.           <artifactId>hibernate-ehcache</artifactId>; k3 U* x+ e' |; \; s
  4.           <version>4.3.5.Final</version>
    ' i8 U7 ~" m/ @! Z* D
  5.       </dependency>
复制代码
  1. <hibernate-configuration>
    : s+ F, P" K# F
  2.     <session-factory>
    & P( }& f3 ^3 E1 T
  3.         <property name="connection.driver_class">com.mysql.jdbc.Driver</property>$ G$ r. s, T4 D1 B9 O+ r/ o* L: B
  4.         <property name="connection.url">jdbc:mysql://localhost/test</property>
    ' i- B% P) z; E! ^9 V; |) X
  5.         <property name="connection.username">root</property>
    $ N8 x/ m9 f) O/ w: Q* a: E. R
  6.         <property name="connection.password"></property>
    ) T) H8 ^" v2 Y# k7 G
  7.         <property name="hibernate.dialect">org.hibernate.dialect.MySQL5Dialect</property>
    # `7 p! v; K+ S
  8.         <property name="hibernate.show_sql">true</property>
    - k% H3 |7 I* v3 R
  9.         <property name="hibernate.hbm2ddl.auto">update</property># ?8 B+ ^3 M) Q( S, J2 E( H7 f! o
  10.         <property name="hibernate.generate_statistics">true</property>
    : v+ s& @( u& y" o# p
  11.         <property name="hibernate.cache.region.factory_class">3 I* |1 n$ }+ t" \  D( J- l
  12.             org.hibernate.cache.ehcache.EhCacheRegionFactory0 D2 d& o: T  P: K0 f/ J) k1 C
  13.         </property>
    " n4 `5 \; c9 }
  14.         <mapping class="com.xinglongjian.entity.hbm.Book2"/>0 D+ t! \$ R4 f1 X2 e# Z
  15. </hibernate-configuration>
复制代码

/ j- P2 |' O/ L: U+ L8 v- g 第二,通过ehcache.xml配置EHCache,该文件放置于classpath的根目录下。可以在该配置文件中设置将不同的对象存储在不同的regions。
  1. <ehcache>; f( m; C; a& I" z
  2. <diskStore path="c:/data/ehcache"/>1 g2 o, ?1 s+ [# |6 {
  3. <defaultCache0 o! f2 s/ ]  y9 s
  4.         maxElementsInMemory="10"
    : x( X: Z' f5 O. Q5 S4 _$ H
  5.         eternal="false"
    8 A* i. s  O( U$ \1 Y) M
  6.         overflowToDisk="true"( t: a  C' ^" R2 ?% P
  7.         timeToIdleSeconds="120"9 v) b7 Q, M9 l$ A, {
  8.         timeToLiveSeconds="120"( Z: U% j9 u  @. g6 o9 z
  9.         diskPersistent="false"
    , `/ \: }/ c+ c" w% p
  10.         diskExpiryThreadIntervalSeconds="120"/>, D9 L+ Z1 C/ W" y
  11. <cache name="com.xinglongjian.entity.hbm.Book" maxElementsInMemory="10"  eternal="false"   P7 O& y" E7 _' L  W' H7 z9 H7 \
  12.     overflowToDisk="false" timeToIdleSeconds="120" timeToLiveSeconds="120" diskPersistent="false"/>
    , [& ?0 s& M; `/ P9 j  x
  13. </ehcache>
复制代码
第三,设置持久化类
  1. @Entity# y; J9 ]- ~! `5 z
  2. @Cacheable" }# n$ h, `# S6 n* V
  3. @Cache(usage=CacheConcurrencyStrategy.READ_ONLY,region="com.xinglongjian.entity.hbm.Book")
    - L- U; Y9 r! i; b$ X1 }! K* w: G+ x
  4. public class Book2 {
    : e  q# P! k$ H. n& l0 O
  5.     @Id
    ; M, U0 q0 x9 m6 h& C! `
  6.     @GeneratedValue
    # D1 H% G  e# a  w/ Y9 t  l
  7.     private int id;7 `9 u9 j0 h& a. u0 v
  8.     private String title;
    $ p7 }4 O2 ~9 [8 H& k9 n% t
  9.     public String getTitle() {
    " g# |/ T- ]8 M6 G) K
  10.         return title;
    $ n1 E5 w/ P8 y
  11.     }
    5 S2 I* Y' Z, v+ @. V) I2 v4 L
  12.     public void setTitle(String title) {5 |! H7 a( _" y# ]+ z4 b% ]: U
  13.         this.title = title;
    % c: F$ H2 A3 g& G% ]# Z; r- [& Q
  14.     }, t/ k0 Z6 `+ ^8 n
  15.     public int getId() {3 c1 Y; o  u" Q' D1 }+ U5 L
  16.         return id;- {* {5 s0 D% Z4 t
  17.     }5 L- B  z" {. }2 h6 ]
  18.     public void setId(int id) {* I" x  z' u4 I( O  z
  19.         this.id = id;" a* d7 h- y$ [: ^- ?& f, g4 k
  20.     }
    / t0 d2 b$ d" d% v$ T: o; e
  21.     @Override0 ?5 h! D( F0 ^1 q
  22.     public int hashCode() {7 r2 d9 @1 n+ E7 }. |
  23.         final int prime = 31;
    5 v& ^$ [' U1 c$ W+ _2 N, _
  24.         int result = 1;
    % n' I3 {' P7 s, }3 A
  25.         result = prime * result + id;. w" X7 v! {" A! c
  26.         result = prime * result + ((title == null) ? 0 : title.hashCode());
    , N+ v+ f8 j2 Z+ p0 w1 L# F
  27.         return result;
    # |2 x) W$ {4 t
  28.     }* w: V3 k  J) r) ?' c3 d
  29.     @Override
    2 }! J$ V6 X3 m, D
  30.     public boolean equals(Object obj) {
    ) P6 b* l/ B. e& v, X5 n  i) o
  31.         if (this == obj)
    ' F/ U1 \+ v$ x5 ^5 D
  32.             return true;2 b, j0 X" Q! c; y- N5 s
  33.         if (obj == null)8 ~! Q$ N; z; i3 X: w
  34.             return false;
    ) G5 d) m5 G3 G9 G% Q
  35.         if (getClass() != obj.getClass())+ _- z/ H- z* G8 S0 P! r6 J/ p
  36.             return false;
    ( i7 @( Y' p. A5 C6 E6 `; I& K7 z
  37.         Book2 other = (Book2) obj;8 n' |/ W3 }4 y! |) V  i
  38.         if (id != other.id)
    : `) f* T# A) m7 n3 d7 G: P. _* U
  39.             return false;
    " @4 V0 j& H; z
  40.         if (title == null) {
    , I, K/ A4 {! Z- Y% v% W
  41.             if (other.title != null)
      C) w; Y# k; b2 |. J) _3 X
  42.                 return false;! b+ C% b2 n6 T0 O% s* B
  43.         } else if (!title.equals(other.title))' ]( d3 v8 K6 d% Z) Y9 X, `7 _" @
  44.             return false;' `' h' x( D: \/ U) ]
  45.         return true;
    3 l, C) d5 t/ S  r: B4 a) Q6 G/ _3 c
  46.     }
    ) ~& Z4 l$ y) a* S8 M3 q
  47.     4 x) ]0 v& |# H
  48. }
复制代码
二级缓存的持久化类必须实现equals方法。
  Y: Q% E" @: _/ F6 u5 W5 g: T
3 a% r, R( }* X# q5 c& A( }" q只有在SELECT时才会缓存。3 X! m2 ?6 q2 _

! ^: m  U1 W: W& z, i" o在同一个session里,查询2个不同的对象,会缓存2次,
  1. Session sess=sf.openSession();
    # _) K: E+ Z, C5 L
  2.         Book2 b=(Book2) sess.get(Book2.class, 17);
    % n: X! v6 I% l$ V0 S6 N
  3.         System.out.println(b);4 U  h- E( r% @" }
  4.         assertEquals("spring Recipes", b.getTitle());6 L! _6 W* {) ?+ y
  5.         Book2 b3=(Book2) sess.get(Book2.class, 18);
    : D3 S7 a/ C6 E  e! ^$ d
  6.         assertEquals("dfad", b3.getTitle());
    6 w; t( a1 L0 b
  7.         sess.close();) c0 U  v) e( T& e" H  M3 o& E
  8.         slcs=stat.getSecondLevelCacheStatistics("com.xinglongjian.entity.hbm.Book");; K( P) Y! j9 W  X
  9.         System.out.println(slcs);
复制代码
结果
  1. SecondLevelCacheStatistics[hitCount=0,missCount=2,putCount=2,elementCountInMemory=2,elementC9 N  j7 F7 p9 u% L3 W9 d0 m
  2. ountOnDisk=0,sizeInMemory=3948]
复制代码
  D5 s; H: w& u7 c) r& s0 r
在同一个session里,查询相同的对象,会先查询一级缓存,一级缓存中有就不会查询二级缓存。
  1. Session sess1=sf.openSession();) _6 z7 N- F3 `& _5 g  }+ X: v- y
  2.         Book2 b1=(Book2) sess1.get(Book2.class, 17);* U+ I' E- c: t& s" d
  3.         System.out.println(b);2 v- m  `, k! m$ Y  r
  4.         Book2 b2=(Book2) sess1.get(Book2.class, 17);
    5 I* y, }+ S0 p
  5.         assertEquals("Spring Recipes", b1.getTitle());
      a  q  f- l) W( _* R7 o* ]$ j
  6.         assertEquals("Spring Recipes", b2.getTitle());, h. x/ z6 \2 }" h( l
  7.         slcs=stat.getSecondLevelCacheStatistics("com.xinglongjian.entity.hbm.Book");8 w9 t# H' V' e/ i3 }' ^
  8.         System.out.println(slcs);
复制代码
结果,在新的session中,一级缓存不可用,就会使用二级缓存。
  1. SecondLevelCacheStatistics[hitCount=1,missCount=2,putCount=2,elementCountInMemory=2,elementC
    ' U4 @/ D5 m/ C: F# V* y
  2. ountOnDisk=0,sizeInMemory=3948]
复制代码
完整测试逻辑
  1. @Test
    ) M4 ?3 d* n/ H8 `" v3 ^
  2.     public void test2LCache()
    * Z/ I4 s5 l# E/ z( s. m4 m
  3.     {
    / v0 E) w- ]0 P
  4.         Statistics stat=sf.getStatistics();//获取stat对象
    # s* C( {& F( A3 Q$ e
  5.         Session sess=sf.openSession();% t7 ]  K$ n* a$ K3 w: l+ B
  6.         Transaction tx=sess.beginTransaction();
    # h5 E# M1 W) t+ }- P
  7.         ( @% c, h9 g6 \. S6 ]& s$ S
  8.         //存储对象,此时不会放到缓存中4 d7 x7 p  Y1 x+ `3 t
  9.         System.out.println("--------------存储对象---------------------------------");2 C9 ^* n  b$ i7 c( g
  10.         Book2 book=new Book2();1 Q- F( P' D+ ~3 \" G6 E
  11.         book.setTitle("Spring Recipes");
    " q* F* I, d& S$ D" ~$ O
  12.         sess.saveOrUpdate(book);. ?, `5 O4 g6 H8 S% ~$ c3 ~. t, o
  13.         tx.commit();
    - |1 ^; j7 v0 J* X6 d3 ?2 @
  14.         sess.close();
    8 ^( c% P+ {/ j: b' y
  15.         System.out.println(book);
    ! Y7 F* v3 t7 e5 y
  16.         SecondLevelCacheStatistics slcs=stat.getSecondLevelCacheStatistics("com.xinglongjian.entity.hbm.Book");4 K' N. i: v6 M- R
  17.         System.out.println(slcs);: O4 R( {, K& t: Q6 R; S& R
  18.         Cache cache=sf.getCache();
    . e7 O& j$ n) F, e
  19.         System.out.println(cache);. T& v) Q- k$ ~9 `
  20.         cache.evictAllRegions();//从所有region中获取数据
    3 f) |9 \, U& }! P% z4 W
  21.         Map map=slcs.getEntries();" U* q  c- W. Q7 [3 q! x
  22.         System.out.println("Cache entries:"+map.size());& p3 |. r" U5 G! f
  23.         System.out.println("--------------第一次查询后---------------------------------");' w9 ~' j" t) C+ V- x9 z$ x7 j! |
  24.         sess=sf.openSession();; G7 T! g, X6 K" Z: ]2 s  E
  25.         tx=sess.beginTransaction();
    ) F7 d/ N4 m& F: W
  26.         Book2 b1=(Book2) sess.byId(Book2.class).load(book.getId());//第一次查询+ S0 _+ t$ z& @" j: t3 w1 \% S
  27.         System.out.println(b1);
    + R# g3 W, l# _! O) s  @- {) Q0 y
  28.         assertEquals(book, b1);+ Y' v; B1 U  `2 Y$ c
  29.         tx.commit();9 O1 q; c7 h$ L: T9 w4 y( H" f' Z
  30.         sess.close();
    ; o7 ?5 k1 T  Z/ T6 Z* T, l
  31.         slcs=stat.getSecondLevelCacheStatistics("com.xinglongjian.entity.hbm.Book");  Z' B- I9 e5 n- D
  32.         System.out.println(slcs);
    ( ]+ ?7 }" s8 o" t
  33.         map=slcs.getEntries();
    2 a5 a+ g" p8 V  S- N
  34.         System.out.println(map.size());
    6 D, O& ]* Q9 g) m4 s" v  F
  35.         System.out.println("--------------第二次查询后---------------------------------");7 O9 X2 u+ {9 l* n' g6 `. {5 s4 W
  36.         sess=sf.openSession();7 }& p: V( P# T8 R  M8 z- [3 I
  37.         tx=sess.beginTransaction();
    ) H1 d7 {, l5 Q. v% |9 K8 \
  38.         Book2 b2=(Book2) sess.byId(Book2.class).load(book.getId());//第二次查询
    1 X2 k* j) ]" E9 H2 @& h9 N" Z
  39.         System.out.println(b2);; f) L$ v$ ^1 }
  40.         assertEquals(book, b2);
    5 S8 T* O! T& z: S; T
  41.         tx.commit();
    ' f( v4 R, o. K$ P
  42.         sess.close();
    5 ~% L2 x! I1 |" a
  43.         
    8 ^7 W  f- x3 U* a, w/ c0 r
  44.         slcs=stat.getSecondLevelCacheStatistics("com.xinglongjian.entity.hbm.Book");
    * ~+ D$ m! ]0 I
  45.         System.out.println(slcs);
    3 H8 o* H+ u2 v8 {+ G" g# y  Z
  46.         // this is the initial select
    % H5 [' y6 r. i
  47.         assertEquals(stat.getSecondLevelCacheMissCount(), 1);
    2 R; H& p% n7 Q% \3 N
  48.         // we put one element in the cache from the miss
    % W: W0 E+ l) c" L4 E4 f
  49.         assertEquals(stat.getSecondLevelCachePutCount(), 1);8 b! `. G# P9 \+ c
  50.         // we still didn't hit the cache, because of 1L cache
    + c) c6 M, r: J( D( v' Z0 h
  51.         assertEquals(stat.getSecondLevelCacheHitCount(), 1);
    ' M, s8 g; E% I2 e5 g8 J* e
  52.         System.out.println("--------------第三次查询后---------------------------------");! j% Y4 E9 f5 i! D% v! D6 R
  53.         sess=sf.openSession();3 F% Y8 u; j( g4 k  S
  54.         tx=sess.beginTransaction();+ u3 V2 ?; _  n" m, ^: @
  55.         b1=(Book2) sess.byId(Book2.class).load(book.getId());//第三次查询
    6 |4 i0 @& r; u7 ?6 S- v1 U5 U
  56.         assertEquals(book, b1);
    + u( ]2 F9 q: v. Y9 T! {1 n$ R
  57.         tx.commit();7 b9 [" u* @6 G
  58.         sess.close();0 Y) K5 M, u- W" T7 i" |
  59.         $ ?; b  Z' n; K8 v% d8 }
  60.         slcs=stat.getSecondLevelCacheStatistics("com.xinglongjian.entity.hbm.Book");0 E+ V& Q* A) O( Q# ~; J+ o7 J
  61.         System.out.println(slcs);
    & s% s  _; e4 D) [% _9 v
  62.         // same miss count (we should hit now)
    8 t$ U# {9 Z! B9 X( u6 E$ O9 k
  63.         assertEquals(stat.getSecondLevelCacheMissCount(), 1);
    7 k; f* z( [1 \! G; g: R* j
  64.         // same put count (we didn't put anything new)
    6 E9 K" }; g8 `( E3 i
  65.         assertEquals(stat.getSecondLevelCachePutCount(), 1);
    3 s5 X/ t6 v/ g1 Z
  66.         // now we hit the 2L cache for load
    % x+ r; E, ~/ `
  67.         assertEquals(stat.getSecondLevelCacheHitCount(), 2);
    + M$ z& X; Z8 x% D6 ~
  68.         6 T* F# `+ ~1 S; d- U. W
  69.     }
复制代码
完整测试结果
  1. Hibernate: delete from book2
    ) F& a3 h8 B- }4 n
  2. --------------存储对象---------------------------------# d5 O* W; ^, `' |
  3. Hibernate: insert into Book2 (title) values (?): W5 O. O/ l6 @3 E  ]
  4. com.xinglongjian.entity.hbm.Book2@521e083b0 _6 I" L" p9 P; W, F6 w
  5. SecondLevelCacheStatistics[hitCount=0,missCount=0,putCount=0,elementCountInMemory=0,elementCountOnDisk=0,sizeInMemory=0]
    5 F! @7 |) r+ v+ B: Y- O' E
  6. org.hibernate.internal.CacheImpl@4830f6; T" Q9 H" k- J$ e) _) {
  7. Cache entries:0
    5 i- r) T) }$ O! p. D3 p9 q
  8. --------------第一次查询后---------------------------------
    : @* u, P# y4 n& R. {' q: z
  9. Hibernate: select book2x0_.id as id1_0_0_, book2x0_.title as title2_0_0_ from Book2 book2x0_  |9 D" e& G, a0 W. |
  10. where book2x0_.id=?
    / O8 N+ {: W( a; x
  11. com.xinglongjian.entity.hbm.Book2@521e083b
    7 _9 R9 W" E1 k5 M$ b
  12. SecondLevelCacheStatistics[hitCount=0,missCount=1,putCount=1,elementCountInMemory=1,elementC$ U& e- ^; o$ s6 |6 ^0 [
  13. ountOnDisk=0,sizeInMemory=1979]- \* t2 o  n* }
  14. 1
    4 l- d# j+ z& A! B$ T" w
  15. --------------第二次查询后---------------------------------
    / b% s: \" U& r$ J, A2 Z
  16. com.xinglongjian.entity.hbm.Book2@521e083b
    - ]. v2 z8 Q, ?4 o) A9 P
  17. SecondLevelCacheStatistics[hitCount=1,missCount=1,putCount=1,elementCountInMemory=1,elementC4 `' v$ o2 s6 l/ k: r2 r" c2 h2 M* B- M
  18. ountOnDisk=0,sizeInMemory=1979]5 l3 n4 U  f8 M# ~! S
  19. --------------第三次查询后---------------------------------3 `0 I$ ?. M+ [. Y" X
  20. SecondLevelCacheStatistics[hitCount=2,missCount=1,putCount=1,elementCountInMemory=1,elementC  t& i0 G" A4 l
  21. ountOnDisk=0,sizeInMemory=1979]
复制代码

: [5 E7 T, q) i, t  ^4 S

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


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

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

   

关闭

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

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