我的日常

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

动态微博

查看: 1109|回复: 0

如何配置Hibernate中的二级缓存

[复制链接]

279

主题

41

听众

689

金钱

版主

该用户从未签到

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

- L& R& c) f1 s+ V0 m3 E5 ]7 }首先,要在hibernate.cfg.xml中设置一个cache Provider,hibernate支持多个cache实现,有EHCache,OSCache等。在非分布式环境中可以选择默认的EHCache。添加ehcahe jar7 K3 x: T* }+ [$ L
  1. <dependency>
    # x! c  c' D! b5 c
  2.           <groupId>org.hibernate</groupId>4 c/ W( i- e1 E/ Q9 C" i
  3.           <artifactId>hibernate-ehcache</artifactId>0 E' a# b9 i1 ]6 [: B. R" S6 t* \" w
  4.           <version>4.3.5.Final</version>) o" f$ g8 T  ]. ~
  5.       </dependency>
复制代码
  1. <hibernate-configuration>
    " U4 G1 q( D- g
  2.     <session-factory>, g( V% Q, Q/ o6 B: a/ N) Q
  3.         <property name="connection.driver_class">com.mysql.jdbc.Driver</property>! D# Z) z# p; F" c* c! Z* W( M
  4.         <property name="connection.url">jdbc:mysql://localhost/test</property>+ w2 S! _# A) k- W! c/ L: P' m
  5.         <property name="connection.username">root</property>
    ) i- M% N. Q3 E  e$ w; g9 P
  6.         <property name="connection.password"></property>
    # G- |; \; K9 j' v0 }* x( M
  7.         <property name="hibernate.dialect">org.hibernate.dialect.MySQL5Dialect</property>
    . C2 u. ?' @8 u) _- j
  8.         <property name="hibernate.show_sql">true</property>
    : I0 P/ e* ?- q) G
  9.         <property name="hibernate.hbm2ddl.auto">update</property>
    % O! O' M4 g% j4 G7 T
  10.         <property name="hibernate.generate_statistics">true</property>
    4 F0 i: R+ a) T& m* T
  11.         <property name="hibernate.cache.region.factory_class">& m; O; r: X7 D& j8 `; D
  12.             org.hibernate.cache.ehcache.EhCacheRegionFactory0 P& m2 q, ]1 o# t: ]4 A! u
  13.         </property># c6 W, s& Z6 r) R' |
  14.         <mapping class="com.xinglongjian.entity.hbm.Book2"/>2 e# W. Z+ U& A) o( }' N6 @# B
  15. </hibernate-configuration>
复制代码
1 _3 z( U0 z8 T: z  L- U
第二,通过ehcache.xml配置EHCache,该文件放置于classpath的根目录下。可以在该配置文件中设置将不同的对象存储在不同的regions。
  1. <ehcache>
    - A! ^9 \! Y; c* {% d/ w
  2. <diskStore path="c:/data/ehcache"/>
    5 h1 b" L. f# ^
  3. <defaultCache2 ]' x* b1 `; W. Y8 N8 V- u  C' c
  4.         maxElementsInMemory="10"0 [& \# a( P+ Y4 D+ K5 b7 N
  5.         eternal="false"# _8 f/ w  G' P) ?) t
  6.         overflowToDisk="true"
    ' d8 X$ U' F+ B4 a) m. x0 N+ j9 `6 C
  7.         timeToIdleSeconds="120"
    2 d4 A6 i& ~8 r, [( z
  8.         timeToLiveSeconds="120") W* m4 e9 ^6 `4 [0 m) u5 j
  9.         diskPersistent="false"5 G- @/ G' k  ~4 c: B; s& Q3 u! Z
  10.         diskExpiryThreadIntervalSeconds="120"/>5 R1 q, K# t' `5 @5 T+ N' S
  11. <cache name="com.xinglongjian.entity.hbm.Book" maxElementsInMemory="10"  eternal="false" 7 M/ F& {$ i3 d& ~: i1 ?. N; w
  12.     overflowToDisk="false" timeToIdleSeconds="120" timeToLiveSeconds="120" diskPersistent="false"/>6 Y) [2 ^; T" x. p
  13. </ehcache>
复制代码
第三,设置持久化类
  1. @Entity
    ) i, |. h+ L$ \: z
  2. @Cacheable  c; z$ ^$ N/ j  l1 a+ h4 Y+ `7 e7 y
  3. @Cache(usage=CacheConcurrencyStrategy.READ_ONLY,region="com.xinglongjian.entity.hbm.Book")
    9 Y% s3 H! ^0 z* ^
  4. public class Book2 {
    0 i9 A/ d6 }0 u- M9 s$ A
  5.     @Id( n1 T! U; f8 q$ G
  6.     @GeneratedValue
    ( `8 c+ J1 w6 q0 X7 v5 o
  7.     private int id;1 e% @$ |% h! _' r: K
  8.     private String title;) Y: j5 D9 i, F7 B9 A1 \
  9.     public String getTitle() {5 s0 Z2 Q$ Y( R" N4 M
  10.         return title;
    " o! ^. f# R9 T: J( D/ \( w
  11.     }
    3 L* R. ~% S2 D; R+ m
  12.     public void setTitle(String title) {/ Q, H, P9 F0 P# W1 k# O2 q
  13.         this.title = title;2 S, Q( w1 O' @$ Z2 z
  14.     }* F* L3 b4 B; R+ u4 ^! X& c/ @
  15.     public int getId() {
    ( d4 N5 O( k2 e
  16.         return id;
      \! f; J* G! i0 j" V- J
  17.     }5 P: I# a0 ^  e8 `
  18.     public void setId(int id) {
    ; z' i) ~5 s( m/ F4 n, n: P
  19.         this.id = id;4 f$ K& u9 k. X- T0 M/ {+ d: G
  20.     }
    4 M/ u& m' P, x6 d2 y5 \" p1 _/ t
  21.     @Override! R. d# e$ a; ?& u4 X: |' ]) R8 N
  22.     public int hashCode() {& h- C0 k8 f% U$ ~
  23.         final int prime = 31;
    3 K. Z' e/ U; {9 r
  24.         int result = 1;
    & X& B" u' R( D; t! y# z9 S% {
  25.         result = prime * result + id;5 D5 l; p7 v  {
  26.         result = prime * result + ((title == null) ? 0 : title.hashCode());
    3 Q" Y& ?- W9 e
  27.         return result;- U  h7 e" [6 l
  28.     }
    ! o; T" y- w4 t1 R1 r3 ?
  29.     @Override' \8 e# d! W& u' ]9 t$ ^- I4 g
  30.     public boolean equals(Object obj) {6 x: Z3 \6 }( V9 s5 e8 l- f
  31.         if (this == obj)
    % }- f7 f8 }9 G+ X6 M
  32.             return true;
    & V- ]2 ?3 X) s- E$ Q* R0 q
  33.         if (obj == null)- A; \( D0 Z' S/ {
  34.             return false;
    ' R  u' Z5 x& b& I; W- V% z+ |
  35.         if (getClass() != obj.getClass())% n6 U" R' |5 J
  36.             return false;7 G3 @; P- L+ E: D8 c2 c6 l
  37.         Book2 other = (Book2) obj;6 L' Z0 j+ z( y4 k. A* l! k2 E
  38.         if (id != other.id)# G) I" Z1 ]4 T8 e  R9 w( T
  39.             return false;
    : Z- z. ~: ^) c3 M7 C
  40.         if (title == null) {( ?9 v9 j8 ~) l) B8 _% [
  41.             if (other.title != null)
    ( J& ?6 j. H+ q3 t4 w
  42.                 return false;
    " Y% Q$ ?' r* z, `3 i2 ]& c
  43.         } else if (!title.equals(other.title))
    ' h* k+ O2 w, s/ q2 `* h6 V2 S/ D5 T
  44.             return false;( A2 l. }/ [: ?
  45.         return true;
    ) O; S" m$ |! w+ M  u
  46.     }
    & C5 }( V$ n' W; l0 p5 A5 d$ h
  47.    
    * u3 }2 k% o/ R- a. N; a$ e
  48. }
复制代码
二级缓存的持久化类必须实现equals方法。
2 i3 Z( Z' r: X7 I) I2 m8 r  i  U% a* E- d
只有在SELECT时才会缓存。
9 z& S! H- N- [6 O* P, k/ {6 O$ q
在同一个session里,查询2个不同的对象,会缓存2次,
  1. Session sess=sf.openSession();
    7 K2 e9 C# P* C- b: Z
  2.         Book2 b=(Book2) sess.get(Book2.class, 17);
    - R& c* d6 P  E6 C' F. C# n) B# @- \
  3.         System.out.println(b);* a# G3 ~2 c( x  Q3 r
  4.         assertEquals("spring Recipes", b.getTitle());$ F% P- \. h: R6 B; y: d. t8 ?
  5.         Book2 b3=(Book2) sess.get(Book2.class, 18);
    : p! S' M& ?9 M: m
  6.         assertEquals("dfad", b3.getTitle());
    ) c4 e% k7 }' r, M0 K
  7.         sess.close();5 w7 W0 s; c2 @% E6 y
  8.         slcs=stat.getSecondLevelCacheStatistics("com.xinglongjian.entity.hbm.Book");
    . |7 I1 P! K; Z( U
  9.         System.out.println(slcs);
复制代码
结果
  1. SecondLevelCacheStatistics[hitCount=0,missCount=2,putCount=2,elementCountInMemory=2,elementC
    4 c  V  X6 t, G8 I; V7 o8 F
  2. ountOnDisk=0,sizeInMemory=3948]
复制代码
2 e# g+ g/ o2 v8 Q0 m; S
在同一个session里,查询相同的对象,会先查询一级缓存,一级缓存中有就不会查询二级缓存。
  1. Session sess1=sf.openSession();
      u5 E" s0 s/ }- }; @1 Z, t
  2.         Book2 b1=(Book2) sess1.get(Book2.class, 17);& }" a0 p# q3 Q5 y: i# A& v: r! }' p
  3.         System.out.println(b);
    * n3 `! Y, K3 ~1 T0 N5 E! K
  4.         Book2 b2=(Book2) sess1.get(Book2.class, 17);! C- ^& R8 E& X: S4 l
  5.         assertEquals("Spring Recipes", b1.getTitle());9 ?2 ~9 l7 C2 K+ |9 C0 Q
  6.         assertEquals("Spring Recipes", b2.getTitle());* a4 H- }! y; h, ?$ R! n  V
  7.         slcs=stat.getSecondLevelCacheStatistics("com.xinglongjian.entity.hbm.Book");) V3 m7 R: q. F& C7 d
  8.         System.out.println(slcs);
复制代码
结果,在新的session中,一级缓存不可用,就会使用二级缓存。
  1. SecondLevelCacheStatistics[hitCount=1,missCount=2,putCount=2,elementCountInMemory=2,elementC( o* \  D  i/ b
  2. ountOnDisk=0,sizeInMemory=3948]
复制代码
完整测试逻辑
  1. @Test, |& v) x" ^# b  ]' s9 Z
  2.     public void test2LCache()
    2 w# X! k6 ^+ h
  3.     {
    * k7 ?% y4 r3 @( T8 C+ f7 m
  4.         Statistics stat=sf.getStatistics();//获取stat对象. f+ h  A+ D' M
  5.         Session sess=sf.openSession();
    ; k8 Z" X% I/ f4 E* y, \
  6.         Transaction tx=sess.beginTransaction();
    : \1 ^' j; d. ]0 S
  7.         : E* e' r7 M: K1 [7 K- n
  8.         //存储对象,此时不会放到缓存中0 ^/ }$ W0 v1 F* ?0 f9 \) T
  9.         System.out.println("--------------存储对象---------------------------------");
    % ?# q) F$ F1 y! b# S4 z  P  t9 `
  10.         Book2 book=new Book2();& u6 I* o5 Z3 i/ ^: y* D
  11.         book.setTitle("Spring Recipes");6 R/ P$ F0 [. \1 h4 ?6 n
  12.         sess.saveOrUpdate(book);
    , j$ I: R4 X4 n8 p
  13.         tx.commit();8 i% r2 i& [% m  E* M1 b8 K
  14.         sess.close();5 Q  M2 `* H0 m# X$ x9 k4 x
  15.         System.out.println(book);. l; z) j% g' F. f" j$ ]4 K7 S( U
  16.         SecondLevelCacheStatistics slcs=stat.getSecondLevelCacheStatistics("com.xinglongjian.entity.hbm.Book");
    # `9 d7 j; S  ~, [) H( j
  17.         System.out.println(slcs);5 `1 Y$ x# g* K) |% b
  18.         Cache cache=sf.getCache();
    8 _( p9 X! x3 E. b3 W, G
  19.         System.out.println(cache);. D' i" i# U7 e3 a6 j+ \! F
  20.         cache.evictAllRegions();//从所有region中获取数据3 A: r. Q. ?' Y  H5 k
  21.         Map map=slcs.getEntries();
    5 e4 a4 e. d% m7 s3 R* M
  22.         System.out.println("Cache entries:"+map.size());8 _) x  a+ o6 t
  23.         System.out.println("--------------第一次查询后---------------------------------");7 t8 e' [) ]7 t+ D; X
  24.         sess=sf.openSession();
    % S4 G; l4 k3 [$ j7 S
  25.         tx=sess.beginTransaction();$ B6 l- z- C1 ?6 q
  26.         Book2 b1=(Book2) sess.byId(Book2.class).load(book.getId());//第一次查询+ v! V9 v9 Y# B$ k/ A. [0 Z
  27.         System.out.println(b1);% E! U2 {- Y  ^: \2 J* g+ {' f" _
  28.         assertEquals(book, b1);  B: B. X6 r! X
  29.         tx.commit();
    / y* i. O/ i) S
  30.         sess.close();
    * e8 A/ |4 x* _4 }) G
  31.         slcs=stat.getSecondLevelCacheStatistics("com.xinglongjian.entity.hbm.Book");$ g! K  t4 u9 s
  32.         System.out.println(slcs);
    # [+ o) j3 i  f1 Q' c' Z
  33.         map=slcs.getEntries();& Q. i4 T' {5 z# a# a# l) l' A5 ]+ N
  34.         System.out.println(map.size());
    9 f. z  `! _( Y# c, q9 ~
  35.         System.out.println("--------------第二次查询后---------------------------------");, \8 l4 i2 `. j
  36.         sess=sf.openSession();; D7 l3 i$ Y8 T' W2 O
  37.         tx=sess.beginTransaction();5 W! k: n: b2 ]) y- l# F
  38.         Book2 b2=(Book2) sess.byId(Book2.class).load(book.getId());//第二次查询
    2 ~1 ~( ], R* q. h% H9 I1 O
  39.         System.out.println(b2);
    1 M3 R/ j9 ~8 H4 r( |
  40.         assertEquals(book, b2);6 M) E: y  B8 o5 F3 |3 H
  41.         tx.commit();
    + A4 [1 X# K) @- h' _& t( y4 E
  42.         sess.close();, s2 `5 N8 s7 O$ ?% n, c
  43.         1 q" |: ^& X  f' a5 @( L
  44.         slcs=stat.getSecondLevelCacheStatistics("com.xinglongjian.entity.hbm.Book");
    $ k9 F* {9 q8 |# W+ ]
  45.         System.out.println(slcs);1 N% d3 c& d# L# l
  46.         // this is the initial select( [! b  }) }- J( o
  47.         assertEquals(stat.getSecondLevelCacheMissCount(), 1);0 }7 P" m3 @$ I
  48.         // we put one element in the cache from the miss6 h8 }; X. j! l8 [$ z
  49.         assertEquals(stat.getSecondLevelCachePutCount(), 1);! H- A3 g2 R; E2 Z
  50.         // we still didn't hit the cache, because of 1L cache
    4 m$ K; H4 Z; M: @+ i: K
  51.         assertEquals(stat.getSecondLevelCacheHitCount(), 1);
    1 i5 e" E! l1 d5 y
  52.         System.out.println("--------------第三次查询后---------------------------------");
    ! P7 d* O8 r. r( {) t% `
  53.         sess=sf.openSession();  x$ Y; {3 h' }' S! m# P+ ]
  54.         tx=sess.beginTransaction();
    + S6 Q$ T0 o. Y* g0 M5 W
  55.         b1=(Book2) sess.byId(Book2.class).load(book.getId());//第三次查询
    % P/ n: u. K/ i  t  q
  56.         assertEquals(book, b1);( F7 ]# w: s! t2 L
  57.         tx.commit();
    " t6 d: c. g: W2 }; @9 s  h6 X
  58.         sess.close();1 }( s" h9 f/ m3 V* [& z/ @# D
  59.         4 m% }* ]1 A$ u8 g/ s: J) P
  60.         slcs=stat.getSecondLevelCacheStatistics("com.xinglongjian.entity.hbm.Book");
    . ]$ M5 `1 N4 r0 D9 Q+ L. C1 F3 m& T
  61.         System.out.println(slcs);
    ) A# x0 B( P( [
  62.         // same miss count (we should hit now)
    3 ?, Q8 a7 \) N5 t8 Y% D" D" t
  63.         assertEquals(stat.getSecondLevelCacheMissCount(), 1);
    4 @9 t1 L: w5 v2 \0 ^) [. x
  64.         // same put count (we didn't put anything new)4 D4 S& h$ `% Q# ^% J
  65.         assertEquals(stat.getSecondLevelCachePutCount(), 1);
    + g- R+ x. k) U# ]
  66.         // now we hit the 2L cache for load
    * y5 o) M& g& U7 b  D+ S
  67.         assertEquals(stat.getSecondLevelCacheHitCount(), 2);
    : j  _/ |6 [4 W
  68.         9 |! W; c& d5 c
  69.     }
复制代码
完整测试结果
  1. Hibernate: delete from book2
    # P; L! `6 H% ~8 q) o) {; Y5 Q
  2. --------------存储对象---------------------------------
    , r. d7 j& U; A5 n$ R) f
  3. Hibernate: insert into Book2 (title) values (?)" T8 C( i! g5 P; p9 B
  4. com.xinglongjian.entity.hbm.Book2@521e083b; g5 h1 p5 t1 |8 K- }
  5. SecondLevelCacheStatistics[hitCount=0,missCount=0,putCount=0,elementCountInMemory=0,elementCountOnDisk=0,sizeInMemory=0]
    3 X0 s: Z( n% l
  6. org.hibernate.internal.CacheImpl@4830f6; f3 l8 ]0 T: E) [1 I' u4 p
  7. Cache entries:0
    . a& L% m8 E" y. k5 h2 n' \# Q+ ^
  8. --------------第一次查询后---------------------------------
    + \) X3 k# I  U
  9. Hibernate: select book2x0_.id as id1_0_0_, book2x0_.title as title2_0_0_ from Book2 book2x0_. p6 e( D( R: b" P- c
  10. where book2x0_.id=?0 T6 o  z  F1 s
  11. com.xinglongjian.entity.hbm.Book2@521e083b
    * P2 c& |2 n! L0 K3 u' Y( L! z1 ~
  12. SecondLevelCacheStatistics[hitCount=0,missCount=1,putCount=1,elementCountInMemory=1,elementC
    6 |  n8 X1 Y5 r: k
  13. ountOnDisk=0,sizeInMemory=1979]
    ' k: b5 [; r$ x0 l0 ^. T- t
  14. 1
    * i4 p& S$ J! Q' R: B  Q: Z
  15. --------------第二次查询后---------------------------------
    - n* T3 g  j: u9 Y9 E5 O
  16. com.xinglongjian.entity.hbm.Book2@521e083b
    ( F, z5 j6 Z/ D4 I6 j. R4 K
  17. SecondLevelCacheStatistics[hitCount=1,missCount=1,putCount=1,elementCountInMemory=1,elementC
    * g6 Z: k! a* k
  18. ountOnDisk=0,sizeInMemory=1979]
    3 a1 l4 f% H5 @: l! n5 M
  19. --------------第三次查询后---------------------------------- X; J& o9 G' K" t4 O$ H- H5 F/ j
  20. SecondLevelCacheStatistics[hitCount=2,missCount=1,putCount=1,elementCountInMemory=1,elementC
    6 \" B( E8 x* j  c* T" V
  21. ountOnDisk=0,sizeInMemory=1979]
复制代码
# ]' {, B( j8 L. @

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


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

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

   

关闭

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

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