`
liuccc1
  • 浏览: 7203 次
  • 性别: Icon_minigender_1
  • 来自: 成都
文章分类
社区版块
存档分类
最新评论

Spring3.1 缓存cache配置

阅读更多
最近准备把spring3.1的缓存功能引入到系统中,正好做到数据字典(类似下拉菜单管理)需要用到缓存技术,于是初步使用了一把。
步骤:
1.必须引入ehcache-core-2.5.0.jar,同时spring的jar包需要升级到3.1
2.applicationContext.xml配置文件中需要加入
xmlns:p="http://www.springframework.org/schema/p"
xmlns:cache="http://www.springframework.org/schema/cache"
xsi:schemaLocation="
  http://www.springframework.org/schema/cache
          http://www.springframework.org/schema/cache/spring-cache.xsd"
3.applicationContext.xml配置
<!-- 缓存 -->
<cache:annotation-driven cache-manager="cacheManager"/>
<bean id="cacheManager" class="org.springframework.cache.ehcache.EhCacheCacheManager" p:cache-manager-ref="ehcache" />
<bean id="ehcache" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean" p:config-location="classpath:/ehcache.xml" />
4.
以下是service字典模块service缓存代码
//value对应ehcache.xml中配置的缓存名称,key是缓存的唯一标示,按照参数加方法名
//一般来说是唯一的
	@Cacheable(value="DICT_CACHE",key="#dictId + 'getSystemDictByDictId'")
	public SystemDict getSystemDictByDictId(String dictId){
		Search search = new Search().addFilterEqual("dictId", dictId);
		return systemDictDAO.searchUnique(search);
	}
	
	@Cacheable(value="DICT_CACHE",key="#parentDictId + 'getSystemDictByDictId'")
	public List<SystemDict> findSystemDictByParentDictId(String parentDictId){
		Search search = new Search().addFilterEqual("parentDictId", parentDictId);
		return systemDictDAO.search(search);
	}
	
	@Cacheable(value="DICT_CACHE",key="#parentDictId + #status + 'getSystemDictByDictId'")
	public List<SystemDict> findSystemDictByParentDictId(String parentDictId,Integer status){
		Search search = new Search().addFilterEqual("parentDictId", parentDictId);
			search.addFilterEqual("status", status);
		return systemDictDAO.search(search);
	}
//清除所有缓存,如果简单的话实际上可以加上需要清除哪些缓存,有针对性,但是不太好
//控制
	@CacheEvict(value="DICT_CACHE",allEntries=true)
	public void saveSystemDict(SystemDict systemDict){
		systemDictDAO.save(systemDict);
	}
	
	@CacheEvict(value="DICT_CACHE",allEntries=true)
	public void deleteSystemDict(String dictId){
		systemDictDAO.deleteSystemDict(dictId);
	}


4.ehcache.xml放到classpath根目录
<?xml version="1.0" encoding="UTF-8"?>
<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
    xsi:noNamespaceSchemaLocation="ehcache.xsd" updateCheck="true"  
    monitoring="autodetect">
    
    <diskStore path="java.io.tmpdir"/>
    
    <defaultCache
        maxElementsInMemory="10000"
        eternal="false"
        timeToIdleSeconds="120"
        timeToLiveSeconds="120"
        overflowToDisk="true"
        maxElementsOnDisk="10000000"
        diskPersistent="false"
        diskExpiryThreadIntervalSeconds="120"
        memoryStoreEvictionPolicy="LRU"
        />
     <cache
     	name="DICT_CACHE"
     	maxElementsInMemory="10000"
        eternal="true"
        overflowToDisk="true"
        maxElementsOnDisk="10000000"
        diskPersistent="false"
        /> 
</ehcache>


参考自网上其他几个相关帖子以及spring3.1文档,以上配置在我的工程中是可以正确运行的,如果有什么问题,欢迎留言。
分享到:
评论

相关推荐

    Spring 3.1 Cache Abstraction Tutorial

    《Spring 3.1 缓存抽象教程》 在现代Web应用开发中,缓存机制是提高性能和响应速度的关键技术之一。Spring框架从3.1版本开始引入了强大的缓存抽象,使得开发者能够轻松地在应用程序中集成缓存功能。本教程将深入...

    spring 3.1中的cache小结

    该项目通常包含了一个简单的Spring Boot应用,展示了如何配置和使用Spring 3.1的缓存功能。在代码中,你可以找到注解的使用示例,以及如何通过配置文件或代码来定制缓存行为。 总之,Spring 3.1的缓存功能为开发者...

    spring3.1 api

    Spring 3.1对AOP进行了优化,支持@Profile注解,使得开发者可以根据不同的运行环境加载不同的配置。同时,新增了@Async注解,用于实现方法的异步执行,提高系统并发能力。 2. **依赖注入(Dependency Injection, ...

    struts2.3.4+spring3.1+hibernate4.0整合

    Struts2.3.4、Spring3.1和Hibernate4.0是三个非常重要的Java开源框架,它们在企业级Web应用开发中广泛使用。本文将详细介绍这三个框架的整合过程及其核心概念,帮助开发者理解如何构建一个高效、灵活的Java Web应用...

    JAVA编程之spring cache本机缓存应用

    1、SpringCache是Spring提供的一个缓存框架,在Spring3.1版本开始支持将缓存添加到现有的spring应用程序中,在4.1开始,缓存已支持JSR-107注释和更多自定义的选项 2、Spring Cache利用了AOP,实现了基于注解的缓存...

    浅析SpringCache缓存1

    Spring Cache 是 Spring 框架从 3.1 版本开始引入的一个强大特性,它提供了一种透明化的缓存机制,允许开发者在不修改原有业务代码的基础上,轻松地为应用程序添加缓存功能。这个抽象层使得我们可以使用不同的缓存...

    spring缓存机制-入门实例

    Spring缓存抽象是自Spring 3.1版本引入的,它提供了一个统一的API,支持多种缓存解决方案,如EhCache、Guava Cache、Hazelcast或Infinispan等。这种抽象允许开发者在不依赖特定缓存实现的情况下,轻松地在应用中添加...

    Spring+EhCache缓存实例

    Spring框架自3.1版本开始引入了统一的缓存抽象,支持多种缓存实现,其中包括EhCache。Spring的缓存抽象层使得切换缓存提供商变得简单,而无需改动大量代码。 **3. 配置Spring与EhCache** 在Spring中使用EhCache,...

    Spring基于注解的缓存配置--EHCache AND OSCache

    Spring 3.1引入了一种统一的缓存抽象,它允许开发者在不关心具体缓存实现的情况下,轻松地在应用程序中引入缓存功能。这种抽象包括了注解、接口和配置元素,使得缓存的使用变得简单。 2. **注解驱动的缓存** - `@...

    Spring cache

    Spring Cache 是 Spring 3.1 版本引入的一项重要特性,它不是一种具体的缓存实现(如 EHCache 或 OSCache),而是一种缓存使用的抽象层。通过在现有的业务代码上添加特定的注解,可以轻松地为方法调用添加缓存支持。...

    springMVC二级缓存配置

    Spring 3.1 引入了激动人心的基于注释(annotation)的缓存(cache)技术,它本质上不是一个具体的缓存实现方案(例如 EHCache 或者 OSCache),而是一个对缓存使用的抽象,通过在既有代码中添加少量它定义的各种 ...

    点智数码--注释驱动的-Spring-cache-缓存的介绍.doc

    Spring Cache 是 Spring 框架从 3.1 版本开始引入的一种注解驱动的缓存抽象,它提供了一种简单而灵活的方式来在应用程序中实现缓存功能,无需依赖特定的缓存实现,如 EhCache 或 OSCache。Spring Cache 的核心特性...

    3.2、接3.1自定义缓存策略以及删除缓存Cacheable 参数1

    - `value`: 必填参数,用于指定缓存的名称,对应于配置文件中定义的缓存区域,例如在EHCache中对应于`ehcache.xml`中的`&lt;cache&gt;`标签的`name`属性。 - `key`: 缓存键的生成规则,若为空则默认使用方法参数作为key...

    Spring来实现一个Cache简单的解决方案

    Spring框架提供了多种方式来管理和操作缓存,包括基于注解的缓存管理、基于XML配置的缓存管理等。本文将重点介绍如何通过Spring AOP和ehCache来实现缓存功能。 ##### 2.1 Spring AOP Spring AOP(Aspect Oriented ...

    spring3.2.2+mybatis3.1-lib

    7. **性能优化**: 整合后,可以通过Spring的缓存支持来优化性能,例如使用Spring的Cache抽象进行二级缓存的实现。此外,还可以利用Spring的事务管理策略,如只读事务、事务超时等特性来提升系统性能。 8. **测试...

    Spring Boot 整合 Spring-cache:让你的网站速度飞起来.docx

    Spring Cache 是 Spring 框架的一个模块,自 3.1 版本起引入,提供了基于注解的缓存抽象,使得开发者能够方便地在应用中集成和管理缓存。 一、Spring Cache 介绍 Spring Cache 提供了一种统一的方式来管理不同类型...

    Spring Cache的基本使用与实现原理详解

    Spring Cache 是Spring框架提供的一种缓存抽象,从Spring 3.1版本开始引入,目的是为了简化应用程序中的缓存管理,实现缓存透明化。通过在方法上添加特定注解,如@Cacheable、@CacheEvict等,可以轻松地启用缓存功能...

    spring memcached

    从 Spring 3.1 开始,Spring 框架正式引入了对缓存的支持,使得开发者能够更加方便地管理和使用缓存技术。这一特性极大地简化了缓存的集成工作,并且默认集成了 Map 和 EhCache 这两种常见的缓存解决方案。 #### 二...

    spring-framework-reference.pdf

    - **Cache Abstraction**:Spring 3.1引入了缓存抽象,使得开发人员可以轻松地使用不同的缓存解决方案。 - **Bean Definition Profiles**:Spring 3.1支持定义Bean的配置文件,可以根据不同的环境选择不同的配置。 -...

    java之SpringCache之@Cacheable注解的说明使用

    在Spring3.1以后增加了一项happy的技术点,就是基于注解来实现缓存的技术。他的本质上不是具体的缓存方案实现,而是一个对缓存的抽象,让我们通过注解,实现少量的代码,达到实现缓存的方案。 Cacheable的说明 @...

Global site tag (gtag.js) - Google Analytics