Hibernate Annotation 中配置EhCache缓存

阅读更多

 1.  首先设置EhCache,建立配置文件ehcache.xml,默认的位置在class-path,可以放到你的src目录下:

  1. xml version="1.0" encoding="UTF-8"?>  
  2. <ehcache>  
  3.  <diskStore path="java.io.tmpdir"/>    
  4.   <defaultCache  
  5.    maxElementsInMemory="10000"   
  6.    eternal="false"   
  7.   
  8.    overflowToDisk="true"   
  9.   
  10.    timeToIdleSeconds="300"   
  11.    timeToLiveSeconds="180"   
  12.    diskPersistent="false"  
  13.    diskExpiryThreadIntervalSeconds"120"/>    
  14. ehcache>  

   2.  在Hibernate配置文件中设置:

  1. hibernate.cache.provider_class=org.hibernate.cache.EhCacheProvider   
  2. hibernate.cache.use_query_cache=true  

   3.  为了使用二级缓存,需要在每一个Hibernate Entity上配置。

  1. @Entity  
  2. @Cache(usage = CacheConcurrencyStrategy.NONSTRICT_READ_WRITE)   
  3. public class Forest { ... }  
  1. @OneToMany(cascade=CascadeType.ALL, fetch=FetchType.EAGER)   
  2. @JoinColumn(name="CUST_ID")   
  3. @Cache(usage = CacheConcurrencyStrategy.NONSTRICT_READ_WRITE)   
  4. public SortedSet getTickets() {   
  5.     return tickets;   
  6. }  
  1. @Cache(   
  2.     CacheConcurrencyStrategy usage();                 (1)   
  3.     String region() default "";                       (2)   
  4.     String include() default "all";                   (3)   
  5. )  

(1) usage: the given cache concurrency strategy (NONE, READ_ONLY, NONSTRICT_READ_WRITE, READ_WRITE, TRANSACTIONAL)

(2) region (optional): the cache region (default to the fqcn of the class or the fq role name of the collection)

(3) include (optional): all to include all properties, non-lazy to only include non lazy properties (default all).

 如果不是使用annotation的话,则是在Hbm文件中添加cache usage="read-only"

 4.   如果需要“查询缓存”,还需要在使用Query或Criteria()时设置其setCacheable(true);属性

你可能感兴趣的:(Hibernate,Cache,XML)