Springboot 基于 StringRedisTemplate的缓存工具类 RedisUtils 代码示例

POM依赖

        <!--Redis-->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-redis</artifactId>
        </dependency>

        <!-- fastjson-->
        <dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>fastjson</artifactId>
        </dependency>

代码


import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.TypeReference;
import com.alibaba.fastjson.serializer.SerializerFeature;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.redis.core.StringRedisTemplate;
import org.springframework.stereotype.Component;

import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.TimeUnit;

@Component
public class RedisUtil {


    private static StringRedisTemplate redisTemplate;

    @Autowired
    private RedisUtil(StringRedisTemplate redisTemplate) {
        RedisUtil.redisTemplate = redisTemplate;
    }


    /**
     * 写入缓存
     *
     * @param key      键
     * @param value    值
     * @param time     缓存时长
     * @param timeUnit 缓存时长 时间单位
     */
    public static void put(String key, Object value, long time, TimeUnit timeUnit) {
        redisTemplate.opsForValue().set(key, value == null ? "" : JSON.toJSONString(value, SerializerFeature.WriteMapNullValue), time, timeUnit);
    }

    /**
     * 写入缓存 (8小时)
     *
     * @param key   键
     * @param value 值
     */
    public static void putEightHours(String key, Object value) {
        redisTemplate.opsForValue().set(key, value == null ? "" : JSON.toJSONString(value, SerializerFeature.WriteMapNullValue), 8, TimeUnit.HOURS);
    }

    /**
     * 获取缓存
     *
     * @param key    键
     * @param tClass 需序列化 class
     * @param <T>    实例泛型
     * @return class实例
     */
    public static <T> T get(String key, Class<T> tClass) {
        Object o = redisTemplate.opsForValue().get(key);
        if (o == null) {
            return null;
        }
        return JSON.parseObject(o.toString(), tClass);
    }

    /**
     * 获取缓存
     *
     * @param key           键
     * @param typeReference 类型引用
     * @param <T>           实例泛型
     * @return class实例
     */
    public static <T> T get(String key, TypeReference<T> typeReference) {
        Object o = redisTemplate.opsForValue().get(key);
        if (o == null) {
            return null;
        }
        return JSON.parseObject(o.toString(), typeReference);
    }

    /**
     * 删除key
     *
     * @param key
     */
    public static void delete(String key) {
        redisTemplate.delete(key);
    }

    /**
     * 是否存在key
     *
     * @param key
     * @return
     */
    public static Boolean hasKey(String key) {
        return redisTemplate.hasKey(key);
    }

    /**
     * 设置过期时间
     *
     * @param key     键
     * @param timeout 时长
     * @param unit    时间单位
     * @return 设置是否成功
     */
    public static Boolean expire(String key, long timeout, TimeUnit unit) {
        return redisTemplate.expire(key, timeout, unit);
    }

    //------------------------------------------ Map的操作 -----------------------------------------------

    /**
     * 保存map值到指定key
     */
    public static void hput(String key, String field, Object object) {
        redisTemplate.opsForHash().put(key, field, object);
    }

    /**
     * 保存多个key-value的map
     */
    public static <T> void hPutAll(String key, Map<String, T> map) {
        redisTemplate.opsForHash().putAll(key, map);
    }

    /**
     * 获取存储在哈希表中指定字段的值
     *
     * @param key
     * @param field
     * @return
     */
    public static <T> T hGet(String key, String field, Class<T> clazz) {
        if (!hasKey(key)) {
            return null;
        }
        String mapJson = JSON.toJSONString(redisTemplate.opsForHash().get(key, field));
        return JSON.parseObject(mapJson, clazz);
    }

    /**
     * 删除一个或多个哈希表字段
     *
     * @param key
     * @param fields
     * @return
     */
    public static Long hDelete(String key, Object... fields) {
        return redisTemplate.opsForHash().delete(key, fields);
    }

    /**
     * 获取一个map集
     *
     * @param key   名
     * @param typeReference 返回的map-value的值类型
     * @param <E>
     * @return
     */
    public static <E> HashMap<String, E> hGetAll(String key,TypeReference<E> typeReference) {
        Map<Object, Object> entries = redisTemplate.opsForHash().entries(key);
        if (entries.size() == 0) {
            return new HashMap<>();
        }
        HashMap<String, E> resultMap = new HashMap<>(entries.size());
        for (Map.Entry<Object, Object> entry : entries.entrySet()) {
            E valueObj = JSON.parseObject(JSON.toJSONString(entry.getValue()), typeReference);
            String hashKey = JSON.toJSONString(entry.getKey());
            hashKey = hashKey.replace("\"", "");
            resultMap.put(hashKey, valueObj);
        }
        return resultMap;
    }
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值