Browse Source

redisTemplate的名称修改为alarmRedisTemplate

lixing 3 năm trước cách đây
mục cha
commit
1bf6e7c1b0

+ 1 - 1
src/main/java/com/persagy/apm/diagnose/config/RedisConfig.java

@@ -246,7 +246,7 @@ public class RedisConfig {
 	 * @author maxinyu
 	 * @since 2019年3月5日:下午2:06:37
 	 */
-	@Bean(value = "redisTemplate")
+	@Bean(value = "alarmRedisTemplate")
 	public RedisTemplate<Object, Object> redisTemplate() {
 		RedisTemplate<Object, Object> template = new RedisTemplate<>();
 		// initDomainRedisTemplate(template,

+ 6 - 9
src/main/java/com/persagy/apm/diagnose/utils/RedisLock.java

@@ -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);
     }
 

+ 1 - 1
src/main/java/com/persagy/apm/diagnose/utils/RedisUtil.java

@@ -14,7 +14,7 @@ import org.springframework.util.CollectionUtils;
 @Component
 public class RedisUtil {
 
-    @Resource(name = "redisTemplate")
+    @Resource(name = "alarmRedisTemplate")
     private RedisTemplate<Object, Object> redisTemplate;