博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
5.22. Spring boot with Cache
阅读量:6840 次
发布时间:2019-06-26

本文共 3571 字,大约阅读时间需要 11 分钟。

5.22.1. Spring boot with Redis

5.22.1.1. maven
org.springframework.boot
spring-boot-starter-data-redis
5.22.1.2. application.properties
spring.redis.database=10spring.redis.host=localhostspring.redis.port=6379spring.redis.password=spring.redis.pool.max-active=8spring.redis.pool.max-wait=-1spring.redis.pool.max-idle=8spring.redis.pool.min-idle=0spring.redis.timeout=0
5.22.1.3. JUnit
@RunWith(SpringJUnit4ClassRunner.class)@SpringApplicationConfiguration(Application.class)public class ApplicationTests {	@Autowired	private StringRedisTemplate stringRedisTemplate;	@Test	public void test() throws Exception {		// 保存字符串		stringRedisTemplate.opsForValue().set("neo", "chen");		Assert.assertEquals("chen", stringRedisTemplate.opsForValue().get("neo"));    }}
5.22.1.4. Controller

stringRedisTemplate模板用于存储key,value为字符串的数据

@Autowired	private StringRedisTemplate stringRedisTemplate;		@RequestMapping("/test")	@ResponseBody	public String test() {		String message = "";		stringRedisTemplate.opsForValue().set("hello", "world");		message = stringRedisTemplate.opsForValue().get("hello");		return message;	}

等同于

@Autowired	private RedisTemplate
redisTemplate;

ListOperations

public class Example {    // inject the actual template    @Autowired    private RedisTemplate
template; // inject the template as ListOperations // can also inject as Value, Set, ZSet, and HashOperations @Resource(name="redisTemplate") private ListOperations
listOps; public void addLink(String userId, URL url) { listOps.leftPush(userId, url.toExternalForm()); // or use template directly redisTemplate.boundListOps(userId).leftPush(url.toExternalForm()); }}

例 5.4. RedisTemplate

@Autowired	private RedisTemplate
redisTemplate; public List
getProtocol() { List
protocols = new ArrayList
(); Gson gson = new Gson(); Type type = new TypeToken
>(){}.getType(); redisTemplate.setKeySerializer(new StringRedisSerializer()); redisTemplate.setValueSerializer(new StringRedisSerializer()); String cacheKey = String.format("%s:%s", this.getClass().getName(), Thread.currentThread().getStackTrace()[1].getMethodName()); long expireTime = 5; if(redisTemplate.hasKey(cacheKey)){ String cacheValue = redisTemplate.opsForValue().get(cacheKey); System.out.println(cacheValue); protocols = gson.fromJson(cacheValue, type); }else{ Protocol protocol = new Protocol(); protocol.setRequest(new Date().toString()); protocols.add(protocol); String jsonString = gson.toJson(protocols, type); System.out.println( jsonString ); redisTemplate.opsForValue().set(cacheKey, jsonString); redisTemplate.expire(cacheKey, expireTime, TimeUnit.SECONDS); } return protocols; }

5.22.2. @Cacheable

5.22.2.1. maven
org.springframework.boot
spring-boot-starter-cache
5.22.2.2. Controller

缓存返回结果

@Cacheable("cacheable")	@RequestMapping("/test/cacheable")	@ResponseBody	public String cacheable() {		Date date = new Date();		String message = date.toString();		return message;	}

5秒钟清楚一次缓存

@Scheduled(fixedDelay = 5000)	@CacheEvict(allEntries = true, value = "cacheable")		public void expire() {		Date date = new Date();		String message = date.toString();		System.out.println(message);	}

原文出处:Netkiller 系列 手札
本文作者:陈景峯
转载请与作者联系,同时请务必标明文章原始出处和作者信息及本声明。

你可能感兴趣的文章
有关NDES管理帐号及用户帐号权限
查看>>
samba实现文件共享
查看>>
我的友情链接
查看>>
过几天就要去公司报道了,记录一下这段时间找工作的经历....
查看>>
我的友情链接
查看>>
什么是p2p流媒体技术?
查看>>
KVM虚拟机快照研究(一)
查看>>
我的友情链接
查看>>
yeelink在PX2上的运用(远程控制)
查看>>
IOS GCD之Block
查看>>
响应式 Web 设计必备的 12 款 CSS 框架
查看>>
我的友情链接
查看>>
我的友情链接
查看>>
Java中ArrayList和LinkedList区别
查看>>
css渐变
查看>>
安全漏洞影响的电子邮件地址
查看>>
linux超级基础系列——什么是shell? bash和shell有什么关系?
查看>>
硬件发展历史
查看>>
写一个迷你版Smarty模板引擎,对认识模板引擎原理非常好(附代码)
查看>>
OC中归档与解归档
查看>>