Просмотр исходного кода

修复流变化通知的json格式

648540858 3 лет назад
Родитель
Сommit
83bdb9117f
1 измененных файлов с 3 добавлено и 1 удалено
  1. 3 1
      src/main/java/com/genersoft/iot/vmp/utils/redis/RedisUtil.java

+ 3 - 1
src/main/java/com/genersoft/iot/vmp/utils/redis/RedisUtil.java

@@ -3,6 +3,7 @@ package com.genersoft.iot.vmp.utils.redis;
 import java.util.*;
 import java.util.concurrent.TimeUnit;
 
+import com.alibaba.fastjson.JSONObject;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.data.redis.core.*;
 import org.springframework.stereotype.Component;
@@ -730,7 +731,8 @@ public class RedisUtil {
     }
 
     //    ============================== 消息发送与订阅 ==============================
-    public void convertAndSend(String channel, String msg) {
+    public void convertAndSend(String channel, JSONObject msg) {
+//        redisTemplate.convertAndSend(channel, msg);
         redisTemplate.convertAndSend(channel, msg);
 
     }