我的日常

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

动态微博

查看: 1091|回复: 0

如何配置Hibernate中的二级缓存

[复制链接]

279

主题

41

听众

689

金钱

版主

该用户从未签到

跳转到指定楼层
楼主
发表于 2015-07-18 22:13:11 |只看该作者 |倒序浏览
需要启动二级缓存,二级缓存的scope是sessionFactory。也就是说二级缓存的数据可以在由相同SessionFactory创建的多个Session中重用。4 X$ |! O, h* I. ^+ H0 A) s1 ?" c

/ a+ I* Y5 B8 g  m) c' a; m6 b首先,要在hibernate.cfg.xml中设置一个cache Provider,hibernate支持多个cache实现,有EHCache,OSCache等。在非分布式环境中可以选择默认的EHCache。添加ehcahe jar# A3 Z; R- b0 p* X, O- ^- d6 M
  1. <dependency>) Q3 O6 |' M& e$ h6 C
  2.           <groupId>org.hibernate</groupId>
    3 k; n2 ?! U8 R/ s0 X, K! V
  3.           <artifactId>hibernate-ehcache</artifactId>$ _) r) B: u0 W" E
  4.           <version>4.3.5.Final</version>
    6 J6 x( R9 W: V: o' \9 v; Z
  5.       </dependency>
复制代码
  1. <hibernate-configuration>
    ; C% Z  t$ S( v, g& z
  2.     <session-factory>
    5 H: g2 ]- J0 j; t1 a% A3 r
  3.         <property name="connection.driver_class">com.mysql.jdbc.Driver</property>
    - S. e; q% R; b2 a; F
  4.         <property name="connection.url">jdbc:mysql://localhost/test</property>
    6 a3 {& ~4 c0 v7 R3 n. J
  5.         <property name="connection.username">root</property>
    ; D0 y- z1 b- i
  6.         <property name="connection.password"></property>) m8 w) `- \" o( w3 N- W
  7.         <property name="hibernate.dialect">org.hibernate.dialect.MySQL5Dialect</property>0 ^- k) ~# f$ ~
  8.         <property name="hibernate.show_sql">true</property>6 i! m3 T! D7 |0 D& L. X6 W1 ^. J
  9.         <property name="hibernate.hbm2ddl.auto">update</property>" w" r2 W1 V/ f0 d- i
  10.         <property name="hibernate.generate_statistics">true</property>
    4 K, _8 D2 z# t1 z  T: }7 z
  11.         <property name="hibernate.cache.region.factory_class">
    & _7 L# j+ I0 S- r/ [
  12.             org.hibernate.cache.ehcache.EhCacheRegionFactory% R& F5 K! l0 Q8 R
  13.         </property>
    ! s7 N  W8 O  _. \+ j) t
  14.         <mapping class="com.xinglongjian.entity.hbm.Book2"/>
    2 U! z0 L* @% X' C0 W, S* o3 ~! s
  15. </hibernate-configuration>
复制代码

# ~3 d' Q! x; }6 f- x4 d 第二,通过ehcache.xml配置EHCache,该文件放置于classpath的根目录下。可以在该配置文件中设置将不同的对象存储在不同的regions。
  1. <ehcache>9 e0 S5 x0 f* ^6 o
  2. <diskStore path="c:/data/ehcache"/>
    3 j/ `! r  H, x6 {+ b/ M
  3. <defaultCache. K9 y: C9 v5 }# f, O
  4.         maxElementsInMemory="10"
    ! o  N3 X4 V4 A1 F, T: M
  5.         eternal="false"! g7 I$ P) m8 U7 Z4 U
  6.         overflowToDisk="true"7 Q2 \* E  ], u* S3 X8 j$ O
  7.         timeToIdleSeconds="120"
    / N, `0 E5 r3 W
  8.         timeToLiveSeconds="120"
    8 E& Q  M( C! o* e$ `
  9.         diskPersistent="false"- L; Z9 x( c+ a- L/ j/ U3 B
  10.         diskExpiryThreadIntervalSeconds="120"/>- [6 G, w  e4 R; Y% I2 F
  11. <cache name="com.xinglongjian.entity.hbm.Book" maxElementsInMemory="10"  eternal="false" . W2 M8 N+ X; ^2 r+ I( y% S
  12.     overflowToDisk="false" timeToIdleSeconds="120" timeToLiveSeconds="120" diskPersistent="false"/>  l& x3 U8 ^8 i/ d& i* C6 ~, t' Q, D
  13. </ehcache>
复制代码
第三,设置持久化类
  1. @Entity
    $ ~2 R1 `4 j- e3 S4 S- Z7 A- h8 [  K
  2. @Cacheable
      C1 b' B7 K/ f6 G3 A' j
  3. @Cache(usage=CacheConcurrencyStrategy.READ_ONLY,region="com.xinglongjian.entity.hbm.Book"); Y% s1 J  E/ W: Z' g9 c) m! L5 B
  4. public class Book2 {! B' P: t7 J* a5 S
  5.     @Id
      D. v) e( v5 {/ n% z2 d! G
  6.     @GeneratedValue6 M; T5 b9 ]3 N! Z$ i/ U- k$ M
  7.     private int id;
    ) A( x- |' N$ Q  ~
  8.     private String title;3 f$ ]4 ?, s# f+ E1 {! A4 a
  9.     public String getTitle() {( t/ t/ j0 U& k7 Z6 j
  10.         return title;
    $ U+ w. S" M% ~6 Q  k
  11.     }* W/ s" s1 X; P7 e, N
  12.     public void setTitle(String title) {
    + v( D0 J+ I6 d- l1 l  @
  13.         this.title = title;
    0 r( l, B( v; U" h/ t
  14.     }' A% ^- J: W& c) w1 W* J0 q
  15.     public int getId() {
    1 M+ ~# ]% m7 s8 E
  16.         return id;9 C7 j0 ~$ I6 w& p/ y* S( U  T2 }9 A
  17.     }
    * G: u; }0 I5 E, \  D+ q2 L9 E
  18.     public void setId(int id) {
    $ R; P; S) q5 Q' U4 {
  19.         this.id = id;. \5 w" q% H; A/ N. K/ V
  20.     }9 ^' A3 _% `: J5 I* v1 J" v9 p# M9 l
  21.     @Override
    " g% u' k2 G- ~) F
  22.     public int hashCode() {3 b+ w# i3 e8 K7 N: t( H
  23.         final int prime = 31;& x2 k8 l  a: n  Y) A" S' V
  24.         int result = 1;
    & `; Q5 l' F* z
  25.         result = prime * result + id;/ j0 {" ]" W7 ^3 O2 A
  26.         result = prime * result + ((title == null) ? 0 : title.hashCode());- h" |% O% m6 J6 p4 |
  27.         return result;
    2 q) R$ f1 C& ^
  28.     }  S/ c6 Q8 r5 r  q0 ?% K8 [
  29.     @Override+ g" T0 Y* o3 L* U* a
  30.     public boolean equals(Object obj) {
    - l+ Z+ @* c1 U: L7 O3 L3 e
  31.         if (this == obj)  ]( T% E5 z1 K9 U9 y
  32.             return true;
    8 w- e/ n& v% N
  33.         if (obj == null)! d5 B) y: m  L. c
  34.             return false;1 r! ~( ~. l; A6 H
  35.         if (getClass() != obj.getClass())7 H) }. V5 f- ~0 E6 l) A
  36.             return false;
    . g9 w/ S0 V% o% j8 g7 h
  37.         Book2 other = (Book2) obj;$ s8 {$ t+ ]! \6 [
  38.         if (id != other.id)8 w3 p2 j/ _: G& u
  39.             return false;
    & R0 g! G0 Q, i1 @
  40.         if (title == null) {; {7 Y. ^1 s; |; \$ T2 c
  41.             if (other.title != null)5 d* C7 z$ V! R8 z. r
  42.                 return false;$ M: {) p# d- V: p( g
  43.         } else if (!title.equals(other.title)): e* L2 f2 S* @
  44.             return false;0 w- {. b+ B) \' o
  45.         return true;8 @) E$ f6 H0 C' E, }* v
  46.     }
    / P+ F+ M  K2 z  y
  47.     / s) W: q- X" L: i$ k; E5 q
  48. }
复制代码
二级缓存的持久化类必须实现equals方法。
& K  O  q4 \" n+ L2 _* w' ~$ j1 Y
& w" {$ ^/ L- r9 }只有在SELECT时才会缓存。; U. {; t  s% Z/ N/ K  p

) e' C* d- ^7 u2 H6 Y' A: D3 _在同一个session里,查询2个不同的对象,会缓存2次,
  1. Session sess=sf.openSession();9 e" D3 j2 b/ B9 F# ]; m: o- T
  2.         Book2 b=(Book2) sess.get(Book2.class, 17);
    9 y  E! n1 B# @  s2 W
  3.         System.out.println(b);
    9 I4 R* |, x+ \% }: T- D
  4.         assertEquals("spring Recipes", b.getTitle());
      ~; i& l' E- K3 O$ ~7 p
  5.         Book2 b3=(Book2) sess.get(Book2.class, 18);
    , k' T1 l' `3 V- Q& D! t4 L
  6.         assertEquals("dfad", b3.getTitle());
    - _, W# U/ M' r4 R0 D9 l$ A$ T4 h
  7.         sess.close();
    / Z. Z6 i; P. r# L. c. N/ i, Z
  8.         slcs=stat.getSecondLevelCacheStatistics("com.xinglongjian.entity.hbm.Book");4 D' c) E( w3 ~# Z: @7 s) D7 M$ \
  9.         System.out.println(slcs);
复制代码
结果
  1. SecondLevelCacheStatistics[hitCount=0,missCount=2,putCount=2,elementCountInMemory=2,elementC+ U  r+ |  z: B/ P+ V" F- G
  2. ountOnDisk=0,sizeInMemory=3948]
复制代码

  h7 n9 [1 y1 X$ y/ E9 w 在同一个session里,查询相同的对象,会先查询一级缓存,一级缓存中有就不会查询二级缓存。
  1. Session sess1=sf.openSession();1 e. |4 E8 S' v) g
  2.         Book2 b1=(Book2) sess1.get(Book2.class, 17);
    & `- c& ~' d4 A2 p
  3.         System.out.println(b);* e7 X# g! P* E. b; K4 G3 i6 v4 T" W
  4.         Book2 b2=(Book2) sess1.get(Book2.class, 17);
    " [1 ?. [3 L2 q2 u% o
  5.         assertEquals("Spring Recipes", b1.getTitle());' w& j2 Q9 ?5 p. |* u
  6.         assertEquals("Spring Recipes", b2.getTitle());8 \" u0 ^# D* J1 f
  7.         slcs=stat.getSecondLevelCacheStatistics("com.xinglongjian.entity.hbm.Book");! k! S0 V; n: {/ f$ E; z! n2 s
  8.         System.out.println(slcs);
复制代码
结果,在新的session中,一级缓存不可用,就会使用二级缓存。
  1. SecondLevelCacheStatistics[hitCount=1,missCount=2,putCount=2,elementCountInMemory=2,elementC* Q5 I7 q5 k5 X& M$ X% T
  2. ountOnDisk=0,sizeInMemory=3948]
复制代码
完整测试逻辑
  1. @Test/ _/ d: Q+ u8 B) R
  2.     public void test2LCache()
    3 P) u& @1 r/ P
  3.     {: F8 b: }+ ^4 |( k! M7 |6 V
  4.         Statistics stat=sf.getStatistics();//获取stat对象
    ' D' ]/ D# s- D+ G% ]. ?3 S
  5.         Session sess=sf.openSession();7 w7 Z  x  T1 m" I8 F
  6.         Transaction tx=sess.beginTransaction();
    - O+ s; A! W) @7 H
  7.         # K7 E3 b! ]7 t# G" A2 J* M, g
  8.         //存储对象,此时不会放到缓存中
    ; {) u7 [3 A3 R; q6 n  B! {( b
  9.         System.out.println("--------------存储对象---------------------------------");) V% ]8 k5 U. G* M* V
  10.         Book2 book=new Book2();. |" J, n7 b0 o4 o% Q! b6 @0 ~# l
  11.         book.setTitle("Spring Recipes");
    $ e6 c; M. w  {
  12.         sess.saveOrUpdate(book);5 Q3 u; |5 d9 L3 ~& z0 S
  13.         tx.commit();
    ! Y5 X* `2 T8 R7 h$ [. @; q
  14.         sess.close();5 J) J1 e! R. C1 j0 p1 c
  15.         System.out.println(book);
    ) C8 C! Q& R) T2 \" i
  16.         SecondLevelCacheStatistics slcs=stat.getSecondLevelCacheStatistics("com.xinglongjian.entity.hbm.Book");
    / Y6 b1 g5 S. L
  17.         System.out.println(slcs);- ^7 F. E/ K0 K/ c% I! r
  18.         Cache cache=sf.getCache();
    * F3 W4 H: }1 F0 t% z8 U0 d
  19.         System.out.println(cache);
      |) D9 H% Q( @7 P+ E
  20.         cache.evictAllRegions();//从所有region中获取数据" }* c7 i' [! s: _0 q  Z
  21.         Map map=slcs.getEntries();; o0 j) L0 i9 p& m$ }& x1 K
  22.         System.out.println("Cache entries:"+map.size());
      v7 q6 `1 y+ G+ h
  23.         System.out.println("--------------第一次查询后---------------------------------");
    " p. W0 o( I0 N0 y8 A4 ^7 J
  24.         sess=sf.openSession();  b4 W6 c% q1 }
  25.         tx=sess.beginTransaction();
    9 x1 g/ w' v2 x5 h% k4 P
  26.         Book2 b1=(Book2) sess.byId(Book2.class).load(book.getId());//第一次查询' G& ~3 h, h1 Q2 l! d% H" K9 N
  27.         System.out.println(b1);( I0 c% m4 k3 R, R% x
  28.         assertEquals(book, b1);
    ( H6 o. @* g* ~4 E5 [
  29.         tx.commit();
    # K8 k+ B" o9 V2 U+ m
  30.         sess.close();; _2 w0 ?' v/ |, G* p8 C( v' P! ]
  31.         slcs=stat.getSecondLevelCacheStatistics("com.xinglongjian.entity.hbm.Book");
    # o) p8 Y# x" A  v, G: Y. [/ s9 d
  32.         System.out.println(slcs);; X, ?4 H" x1 n
  33.         map=slcs.getEntries();6 k' {) b* C0 p4 i
  34.         System.out.println(map.size());
    ; F' k+ i  R0 i4 J6 J1 \
  35.         System.out.println("--------------第二次查询后---------------------------------");5 `* X6 r6 G5 H/ K: B
  36.         sess=sf.openSession();3 u4 ^, k, q) J+ h; Z$ e9 @( A# F
  37.         tx=sess.beginTransaction();
    0 |7 [3 c9 R7 y$ h6 u! @5 C
  38.         Book2 b2=(Book2) sess.byId(Book2.class).load(book.getId());//第二次查询% B$ Y. n% k1 \2 M
  39.         System.out.println(b2);
    * M- X: h' J8 s6 V$ b3 D! v
  40.         assertEquals(book, b2);
      z1 G$ o# R8 [: R) W7 ]
  41.         tx.commit();& _/ _( y0 E8 V6 _
  42.         sess.close();
    : l" V4 o: S* u! ?& u( L+ b
  43.         
    , Q8 A; @$ [. V2 Q
  44.         slcs=stat.getSecondLevelCacheStatistics("com.xinglongjian.entity.hbm.Book");
    ' D- c. ?" K# ]2 |( W
  45.         System.out.println(slcs);9 y3 j% J. v# R! i
  46.         // this is the initial select
    ! O% W* T' _. `
  47.         assertEquals(stat.getSecondLevelCacheMissCount(), 1);
    ' j1 U4 v6 [2 l# N2 d& E3 W2 Z
  48.         // we put one element in the cache from the miss
    5 K7 `. ?8 [6 T* ^! k4 u
  49.         assertEquals(stat.getSecondLevelCachePutCount(), 1);
    + j. I  ^* R/ e& F5 c# q
  50.         // we still didn't hit the cache, because of 1L cache+ F+ L* U3 F7 a- {( W8 _! Q
  51.         assertEquals(stat.getSecondLevelCacheHitCount(), 1);
    " O: b; m; D; o6 n
  52.         System.out.println("--------------第三次查询后---------------------------------");  F! X1 k7 X$ V: |
  53.         sess=sf.openSession();
    : U8 W* w& X$ r- |. q, T# m) O. @
  54.         tx=sess.beginTransaction();
    . B5 T/ V( @5 @7 k) y6 e5 Z
  55.         b1=(Book2) sess.byId(Book2.class).load(book.getId());//第三次查询* c% W) j! J4 `5 k7 t' S
  56.         assertEquals(book, b1);
    % e: i$ h- D+ R# ^: `: f6 V: H) @
  57.         tx.commit();
    - H, C  }* k1 v. r- I; C
  58.         sess.close();# t) s2 ^1 M5 T' t) B
  59.         6 `1 P" }8 n- m, a  _; o
  60.         slcs=stat.getSecondLevelCacheStatistics("com.xinglongjian.entity.hbm.Book");/ I$ n4 G$ b1 n# I2 d3 o9 _
  61.         System.out.println(slcs);
    8 U; @: C! ^2 p& L$ M: L
  62.         // same miss count (we should hit now): ]& m! r. f1 D: f- V
  63.         assertEquals(stat.getSecondLevelCacheMissCount(), 1);/ l' Y+ i. m8 `9 S  o
  64.         // same put count (we didn't put anything new)/ e; [. M9 e7 m5 [4 D
  65.         assertEquals(stat.getSecondLevelCachePutCount(), 1);, i3 E! A9 I$ v5 ?
  66.         // now we hit the 2L cache for load
    4 o+ ?( g- j( }: x4 D8 D  v
  67.         assertEquals(stat.getSecondLevelCacheHitCount(), 2);
    , d5 ]2 h/ P2 k. ^, B
  68.         4 `3 k8 {( N$ F, d
  69.     }
复制代码
完整测试结果
  1. Hibernate: delete from book2
    * F" W  O# O8 m: E& C. S% e0 b# W
  2. --------------存储对象---------------------------------
    + s* A: p2 i& W2 E$ b( b% |" P7 ?
  3. Hibernate: insert into Book2 (title) values (?)
    + x  u/ j  D; ~7 l7 u. L" C$ E
  4. com.xinglongjian.entity.hbm.Book2@521e083b
    ! w0 H0 l5 ~2 l% f& }/ G
  5. SecondLevelCacheStatistics[hitCount=0,missCount=0,putCount=0,elementCountInMemory=0,elementCountOnDisk=0,sizeInMemory=0]
    " |$ k0 P! P1 h. [9 r) }# G8 x
  6. org.hibernate.internal.CacheImpl@4830f68 o* q' I9 q$ I" v! E  }
  7. Cache entries:0/ p* F+ a1 Z) \- G1 x1 M
  8. --------------第一次查询后---------------------------------
    : v4 Y6 }/ |4 M* m* ~) g. k
  9. Hibernate: select book2x0_.id as id1_0_0_, book2x0_.title as title2_0_0_ from Book2 book2x0_
    2 t5 j, S5 P) @% j
  10. where book2x0_.id=?
    ) V) t8 f1 J1 F& L' |9 D4 g
  11. com.xinglongjian.entity.hbm.Book2@521e083b  e- q) h& J( [" h% L) G( B
  12. SecondLevelCacheStatistics[hitCount=0,missCount=1,putCount=1,elementCountInMemory=1,elementC
    6 s$ H! m0 j- s* Y
  13. ountOnDisk=0,sizeInMemory=1979]5 D7 m& J  g  u) H* Q
  14. 15 ?3 S: k9 q- c3 i! h. W
  15. --------------第二次查询后---------------------------------! {: Q/ N8 f) k7 J8 g+ r1 N2 R
  16. com.xinglongjian.entity.hbm.Book2@521e083b( H& j: |$ Q( i" V, c8 p9 M' M6 w
  17. SecondLevelCacheStatistics[hitCount=1,missCount=1,putCount=1,elementCountInMemory=1,elementC/ d$ ^7 s# D) C/ E0 N2 K
  18. ountOnDisk=0,sizeInMemory=1979]3 D1 k* ]: A8 H6 L8 m% d
  19. --------------第三次查询后---------------------------------
    7 V  h9 X% }, q. L
  20. SecondLevelCacheStatistics[hitCount=2,missCount=1,putCount=1,elementCountInMemory=1,elementC: y/ ?0 z' }: J4 f( ~* Q! H* I
  21. ountOnDisk=0,sizeInMemory=1979]
复制代码

% ]9 E& C2 d5 b

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


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

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

   

关闭

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

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