|
@@ -4,16 +4,13 @@ import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.data.redis.core.RedisTemplate;
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
|
-import java.util.HashMap;
|
|
|
-import java.util.Map;
|
|
|
import java.util.concurrent.TimeUnit;
|
|
|
-import java.util.logging.Handler;
|
|
|
|
|
|
@Component
|
|
|
public class RedisLock {
|
|
|
|
|
|
@Autowired
|
|
|
- private RedisTemplate redisTemplate;
|
|
|
+ private RedisTemplate alarmRedisTemplate;
|
|
|
|
|
|
/**
|
|
|
* 加锁
|
|
@@ -25,18 +22,18 @@ public class RedisLock {
|
|
|
*/
|
|
|
public boolean lock(String key, String value) {
|
|
|
|
|
|
- if (redisTemplate.opsForValue().setIfAbsent(key, value)) {
|
|
|
+ if (alarmRedisTemplate.opsForValue().setIfAbsent(key, value)) {
|
|
|
// 相当于SETNX,setIfAbsent方法设置了为true,没有设置为false
|
|
|
return true;
|
|
|
}
|
|
|
|
|
|
// 假设currentValue=A 接下来并发进来的两个线程的value都是B
|
|
|
// 其中一个线程拿到锁,除非从始至终所有都是在并发(实际上这中情况是不存在的),只要开始时有数据有先后顺序,则分布式锁就不会出现“多卖”的现象
|
|
|
- String currentValue = String.valueOf(redisTemplate.opsForValue().get(key));
|
|
|
+ String currentValue = String.valueOf(alarmRedisTemplate.opsForValue().get(key));
|
|
|
// 如果锁过期 解决死锁
|
|
|
if (!StringUtils.isEmpty(currentValue) && Long.parseLong(currentValue) < System.currentTimeMillis()) {
|
|
|
// 获取上一个锁的时间,锁过期后,GETSET将原来的锁替换成新锁
|
|
|
- String oldValue = String.valueOf(redisTemplate.opsForValue().getAndSet(key, value));
|
|
|
+ String oldValue = String.valueOf(alarmRedisTemplate.opsForValue().getAndSet(key, value));
|
|
|
if (!StringUtils.isEmpty(oldValue) && oldValue.equals(currentValue)) {
|
|
|
return true;
|
|
|
}
|
|
@@ -53,7 +50,7 @@ public class RedisLock {
|
|
|
*/
|
|
|
public void unlock(String key, String value) {
|
|
|
try {
|
|
|
- redisTemplate.delete(key);
|
|
|
+ alarmRedisTemplate.delete(key);
|
|
|
} catch (Exception e) {
|
|
|
e.printStackTrace();
|
|
|
}
|
|
@@ -61,7 +58,7 @@ public class RedisLock {
|
|
|
|
|
|
public void sendDataLock(String key, String value) {
|
|
|
// redisTemplate.opsForHash().put("ALARM-DATA-LOCK",key,value);
|
|
|
- redisTemplate.opsForValue().setIfAbsent(key, value,10,TimeUnit.SECONDS);
|
|
|
+ alarmRedisTemplate.opsForValue().setIfAbsent(key, value,10,TimeUnit.SECONDS);
|
|
|
// redisTemplate.expire(key,10, TimeUnit.SECONDS);
|
|
|
}
|
|
|
|