修复流变化通知的json格式

pull/276/head
648540858 2021-11-29 18:08:02 +08:00
parent 3bf2e6eee5
commit 83bdb9117f
1 changed files with 3 additions and 1 deletions

View File

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