Spring Cache相关知识有哪些
这篇文章将为大家详细讲解有关Spring Cache相关知识有哪些,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。
简介
Spring 从 3.1 开始定义了 org.springframework.cache.Cache 和 org.springframework.cache.CacheManager 接口来统一不同的缓存技术; 并支持使用 JCache ( JSR-107 )注解简化我们开发;
Cache 接口为缓存的组件规范定义,包含缓存的各种操作集合; Cache 接 口 下 Spring 提 供 了 各 种 xxxCache 的 实 现 ; 如 RedisCache , EhCacheCache , ConcurrentMapCache 等;
每次调用需要缓存功能的方法时, Spring 会检查检查指定参数的指定的目标方法是否已 经被调用过;如果有就直接从缓存中获取方法调用后的结果,如果没有就调用方法并缓 存结果后返回给用户。下次调用直接从缓存中获取。
使用 Spring 缓存抽象时我们需要关注以下两点;
1 、确定方法需要被缓存以及他们的缓存策略
2 、从缓存中读取之前缓存存储的数据
第一步
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-cache </artifactId> </dependency>
第二步application.properties配置:
spring.cache.type=redis spring.cache.redis.time-to-live=3600000 spring.cache.redis.key-prefix=CACHE_ spring.cache.redis.use-key-prefix=true spring.cache.redis.cache-null-values=true
第三步:
config创建MyCacheConfig
packagecom.atguigu.gulimall.product.config; importorg.springframework.boot.autoconfigure.cache.CacheProperties; importorg.springframework.boot.context.properties.EnableConfigurationProperties; importorg.springframework.cache.annotation.EnableCaching; importorg.springframework.context.annotation.Bean; importorg.springframework.context.annotation.Configuration; importorg.springframework.data.redis.cache.RedisCacheConfiguration; importorg.springframework.data.redis.serializer.GenericJackson2JsonRedisSerializer; importorg.springframework.data.redis.serializer.RedisSerializationContext; importorg.springframework.data.redis.serializer.StringRedisSerializer; @EnableConfigurationProperties(CacheProperties.class) @Configuration @EnableCaching publicclassMyCacheConfig{ //@Autowired //CachePropertiescacheProperties; /** *配置文件中的东西没有用上; * *1、原来和配置文件绑定的配置类是这样子的 *@ConfigurationProperties(prefix="spring.cache") *publicclassCacheProperties * *2、要让他生效 *@EnableConfigurationProperties(CacheProperties.class) * *@return */ @Bean RedisCacheConfigurationredisCacheConfiguration(CachePropertiescacheProperties){ RedisCacheConfigurationconfig=RedisCacheConfiguration.defaultCacheConfig(); //config=config.entryTtl(); config=config.serializeKeysWith(RedisSerializationContext.SerializationPair.fromSerializer(newStringRedisSerializer())); config=config.serializeValuesWith(RedisSerializationContext.SerializationPair.fromSerializer(newGenericJackson2JsonRedisSerializer())); CacheProperties.RedisredisProperties=cacheProperties.getRedis(); //将配置文件中的所有配置都生效 if(redisProperties.getTimeToLive()!=null){ config=config.entryTtl(redisProperties.getTimeToLive()); } if(redisProperties.getKeyPrefix()!=null){ config=config.prefixKeysWith(redisProperties.getKeyPrefix()); } if(!redisProperties.isCacheNullValues()){ config=config.disableCachingNullValues(); } if(!redisProperties.isUseKeyPrefix()){ config=config.disableKeyPrefix(); } returnconfig; } }
第四步:
测试使用缓存* @Cacheable: Triggers cache population.:触发将数据保存到缓存的操作* @CacheEvict: Triggers cache eviction.:触发将数据从缓存删除的操作* @CachePut: Updates the cache without interfering with the method execution.:不影响方法执行更新缓存* @Caching: Regroups multiple cache operations to be applied on a method.:组合以上多个操作* @CacheConfig: Shares some common cache-related settings at class-level.:在类级别共享缓存的相同配置
失效模式:编辑的时候直接清空缓存。使其第一次查库的时候存入缓存双写模式:有一定的延迟,缓存期以后才可以读到最新数据
具体案例:
@Cacheable(value={"category"},key="#root.method.name",sync=true) @Override publicList<CategoryEntity>getLevel1Categorys(){ System.out.println("getLevel1Categorys....."); longl=System.currentTimeMillis(); List<CategoryEntity>categoryEntities=baseMapper.selectList(newQueryWrapper<CategoryEntity>().eq("parent_cid",0)); returncategoryEntities; }
以下没有整理。暂时记录一下。
关于“Spring Cache相关知识有哪些”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,使各位可以学到更多知识,如果觉得文章不错,请把它分享出去让更多的人看到。
推荐阅读
-
Spring框架基于注解开发CRUD详解
-
spring DI依赖注入方式和区别有哪些
-
spring data jpa开启批量插入、批量更新的示例分析
-
spring中怎么利用FactoryBean配置Bean
这篇文章将为大家详细讲解有关spring中怎么利用FactoryBean配置Bean,文章内容质量较高,因此小编分享给大家做个参考...
-
如何解决解决Spring Boot正常启动后访问Controller提示404的问题
小编给大家分享一下如何解决解决SpringBoot正常启动后访问Controller提示404的问题,希望大家阅读完这篇文章之后...
-
Spring中怎么解决循环依赖问题
本篇文章给大家分享的是有关Spring中怎么解决循环依赖问题,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有...
-
Spring(aop,如何通过获取代理对象实现事务切换)
Spring,aop,如何通过获取代理对象实现事务切换,恰卡网带你了解更多相关信息。Springaop获取代理对象实现...
-
Spring(bean,四种注入方式详解)
Spring,bean,四种注入方式详解,恰卡网带你了解更多相关信息。目录一、Set方式注入pojo层:1.xml文件t...
-
Spring(Cloud,如何保证微服务内安全)
-
Spring(Cloud,Config,使用本地配置文件方式)