package com.moral.monitor.util; import org.springframework.data.redis.core.RedisTemplate; public class RedisUtil { public static boolean hasKey(RedisTemplate redis, String key) { return redis.hasKey(key); } public static void set(RedisTemplate redis, String key, String value) { redis.opsForValue().set(key, value); } public static String get(RedisTemplate redis, String key) { return redis.opsForValue().get(key); } }