废话不说 直接贴源码连接 : https://git.oschina.net/alexgaoyh/alexgaoyh.git java
使用ehcache来提升系统的性能,如今用的很是多, 也支持分布式的缓存,在hibernate当中做为二级缓存的实现产品,能够提升查询性能。 git
pom.xml spring
<dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-ehcache</artifactId> <version>4.1.6.Final</version> </dependency>
在项目的src下面添加ehcache的配置文件ehcache.xml 缓存
<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../config/ehcache.xsd"> <!-- Subdirectories can be specified below the property e.g. java.io.tmpdir/one --> <diskStore path="java.io.tmpdir"/> <!-- Mandatory Default Cache configuration. These settings will be applied to caches created programmtically using CacheManager.add(String cacheName) --> <defaultCache maxElementsInMemory="10000" eternal="false" timeToIdleSeconds="120" timeToLiveSeconds="120" overflowToDisk="true" maxElementsOnDisk="10000000" diskPersistent="false" diskExpiryThreadIntervalSeconds="120" memoryStoreEvictionPolicy="LRU" /> <cache name="org.hibernate.cache.spi.UpdateTimestampsCache" maxElementsInMemory="5000" eternal="true" overflowToDisk="true" /> <cache name="org.hibernate.cache.internal.StandardQueryCache" maxElementsInMemory="10000" eternal="false" timeToLiveSeconds="120" overflowToDisk="true" /> <!-- java文件注解查找cache方法名的策略:若是不指定java文件注解中的region="ehcache.xml中的name的属性值", 则使用name名为com.lysoft.bean.user.User的cache(即类的全路径名称), 若是不存在与类名匹配的cache名称, 则用 defaultCache 若是User包含set集合, 则须要另行指定其cache 例如User包含citySet集合, 则也须要 添加配置到ehcache.xml中 --> <cache name="javaClassName" maxElementsInMemory="2000" eternal="false" timeToIdleSeconds="120" timeToLiveSeconds="120" overflowToDisk="true" /> </ehcache>在spring 集成hibernate 的配置文件中,添加以下配置
<!-- 开启查询缓存 --> <prop key="hibernate.cache.use_query_cache">true</prop> <!-- 开启二级缓存 --> <prop key="hibernate.cache.use_second_level_cache">true</prop> <!-- 高速缓存提供程序 --> <!-- 因为spring也使用了Ehcache, 保证双方都使用同一个缓存管理器 --> <prop key="hibernate.cache.region.factory_class"> org.hibernate.cache.ehcache.SingletonEhCacheRegionFactory </prop>Spring也使用ehcache, 因此也须要在spring配置文件中添加ehcache的配置
<!-- cacheManager, 指定ehcache.xml的位置 --> <bean id="cacheManagerEhcache" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean"> <property name="configLocation"> <value>classpath:ehcache.xml</value> </property> <!-- 因为hibernate也使用了Ehcache, 保证双方都使用同一个缓存管理器 --> <property name="shared" value="true"/> </bean>在类中定义:
@Entity @Table(name = "t_user") @Cache(usage = CacheConcurrencyStrategy.READ_WRITE, region="javaClassName") public class User implements Serializable { }默认状况下二级缓存只会对load get 之类的方法缓存, 想list iterator 之类的方法也使用缓存 必须跟查询缓存一块儿使用, 重写查询方法
.setCacheable(true)
criteria.setCacheable(true).list();
以后进行验证 app