spring缓存cache的使用详解
作者:书生杨阳 时间:2023-03-28 11:36:14
spring缓存cache的使用
在spring配置文件中添加schema和spring对缓存注解的支持:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:cache="http://www.springframework.org/schema/cache"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx.xsd
http://www.springframework.org/schema/cache
http://www.springframework.org/schema/cache/spring-cache.xsd"
default-autowire="byName">
<!--缓存配置-->
<cache:annotation-driven/>
在spring配置文件中加入缓存管理器:
<!-- generic cache manager -->
<bean id="cacheManager"
class="org.springframework.cache.support.SimpleCacheManager">
<property name="caches">
<set>
<bean class="org.springframework.cache.concurrent.ConcurrentMapCacheFactoryBean"
p:name="hardwareCache"/>
<bean class="org.springframework.cache.concurrent.ConcurrentMapCacheFactoryBean"
p:name="bannerCache"/>
</set>
</property>
</bean>
然后在代码的service的impl层加上如 * 解即可把数据缓存起来:
@Cacheable(value="bannerCache")
其中@Cacheable表示spring将缓存该方法获取到的数据,(缓存是基于key-value方式实现的),key为该方法的参数,value为返回的数据,当你连续访问该方法时你会发现只有第一次会访问数据库. 其他次数只是查询缓存.减轻了数据库的压力.
当更新了数据库的数据,需要让缓存失效时,使用下面的注解:
这个注解表示让appCache缓存的所有数据都失效。
@CacheEvict(value = "appCache", allEntries = true)
springcache配置缓存存活时间
Spring Cache @Cacheable本身不支持key expiration的设置,以下代码可自定义实现Spring Cache的expiration,针对Redis、SpringBoot2.0。
直接上代码:
@Service
@Configuration
public class CustomCacheMng{
private Logger logger = LoggerFactory.getLogger(this.getClass());
// 指明自定义cacheManager的bean name
@Cacheable(value = "test",key = "'obj1'",cacheManager = "customCacheManager")
public User cache1(){
User user = new User().setId(1);
logger.info("1");
return user;
}
@Cacheable(value = "test",key = "'obj2'")
public User cache2(){
User user = new User().setId(1);
logger.info("2");
return user;
}
// 自定义的cacheManager,实现存活2天
@Bean(name = "customCacheManager")
public CacheManager cacheManager(
RedisTemplate<?, ?> redisTemplate) {
RedisCacheWriter writer = RedisCacheWriter.lockingRedisCacheWriter(redisTemplate.getConnectionFactory());
RedisCacheConfiguration config = RedisCacheConfiguration.defaultCacheConfig().entryTtl(Duration.ofDays(2));
return new RedisCacheManager(writer, config);
}
// 提供默认的cacheManager,应用于全局
@Bean
@Primary
public CacheManager defaultCacheManager(
RedisTemplate<?, ?> redisTemplate) {
RedisCacheWriter writer = RedisCacheWriter.lockingRedisCacheWriter(redisTemplate.getConnectionFactory());
RedisCacheConfiguration config = RedisCacheConfiguration.defaultCacheConfig();
return new RedisCacheManager(writer, config);
}
}
来源:https://blog.csdn.net/Petershusheng/article/details/52397895
标签:spring,缓存,cache
0
投稿
猜你喜欢
Java设计模式初识之备忘录模式详解
2023-08-29 23:27:09
Docker 部署 SpringBoot 项目整合 Redis 镜像做访问计数示例代码
2022-06-06 19:48:18
java语法糖之jdk迭代的新特性汇总
2022-07-09 10:05:19
详解Java之冒泡排序与选择排序
2021-11-06 12:49:24
揭秘双十一手机淘宝图标如何被动态更换
2022-06-05 20:14:04
java使用IO流对数组排序实例讲解
2023-09-04 02:24:19
C#基于QRCode实现动态生成自定义二维码图片功能示例
2023-04-03 04:08:43
分享15款Java程序员必备的开发工具
2021-12-07 19:09:07
java基础之数组常用操作总结(必看篇)
2022-12-09 03:32:17
Android中LinearLayout布局的常用属性总结
2023-11-23 17:09:37
浅谈Java中Int、Integer、Integer.valueOf()、new Integer()之间的区别
2023-10-29 20:08:53
Dubbo服务校验参数的解决方案
2023-06-09 14:30:10
C#调用QQ_Mail发送邮件实例代码两例
2023-11-10 17:27:05
MyBatis框架迭代器模式实现原理解析
2021-08-07 13:56:00
Android实现简易浏览器遇到问题的解决方法
2023-06-15 21:47:56
Java中的notyfy()和notifyAll()的本质区别
2022-06-05 22:46:19
java8 stream 如何打印数据元素
2022-08-20 18:40:02
如何在C#9 中使用static匿名函数
2022-06-21 01:44:03
基于Android中实现定时器的3种解决方法
2022-02-10 15:03:53
Java中Set集合的使用和底层原理解析
2022-12-16 20:54:28