spring缓存Ehcache(入门2)源码解读

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring缓存Ehcache(入门2)源码解读相关的知识,希望对你有一定的参考价值。

Ehcache缓存:

    解读:

Ehcache缓存是在继承spring缓存核心类CacheManager的基础上实现的。

    常用类:

EhCacheCacheManager:继承自CacheManager类(org.springframework.cache.CacheManager)负责管理Cache对象。
EhCacheManagerFactoryBean:是个工厂类,根据配置文件中设置的参数(配置文件会被注入工厂类对象中),新建Ehcache的CacheManager对象,其可以通过属性configLocation指定用于创建CacheManager的Ehcache配置文件的路径,通常是ehcache.xml文件的路径。

实例:

------------------------------------------------------------------------------------------------------------

<!--缓存配置-->

   <!--启用缓存注解功能-->

   <cache:annotation-driven cache-manager="cacheManger"/>

  <bean id="cacheManagerFactory" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean">
  <property name="configLocation" value="classpath:ehcache.xml"></property>
  </bean>

  <bean id="cacheManager" class="org.springframework.cache.ehcache.EhCacheCacheManager">
  <property name="cacheManager" ref="cacheManagerFactory"/>
  </bean>

------------------------------------------------------------------------------------------------------------

service层的使用可以翻看http://www.cnblogs.com/zqsky/p/5868549.html

以上是关于spring缓存Ehcache(入门2)源码解读的主要内容,如果未能解决你的问题,请参考以下文章

ehcache详细解读

SpringBoot入门六,添加ehcache缓存

Spring Boot Oauth2缓存UserDetails到Ehcache

ehcache

SpringBoot缓存(Ehcache)

Ehcache详细解读