【无标题】redisTemplate实现Redis 锁
使用时需要注入redisTemplate 可以百度搜一下怎么使用spring-date-redis
//设置锁
public boolean lock(String lock) {
return (boolean) redisTemplate.execute((RedisCallback) connection -> {
//获取时间毫秒值
long expireAt = System.currentTimeMillis(.
原创
2021-11-19 13:57:23 ·
624 阅读 ·
0 评论