redisTemplate 简单封装

这里需要用到Hutool工具集合

        <dependency>
            <groupId>cn.hutool</groupId>
            <artifactId>hutool-all</artifactId>
            <version>4.6.1</version>
        </dependency>

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

引入以上Maven依赖

后续赋值粘贴就好了

import cn.hutool.core.bean.BeanUtil;
import cn.hutool.core.util.NumberUtil;
import cn.hutool.core.util.StrUtil;
import cn.hutool.json.JSONObject;
import cn.hutool.json.JSONUtil;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.redis.core.StringRedisTemplate;
import org.springframework.stereotype.Component;
import org.springframework.util.ClassUtils;

import java.math.BigDecimal;
import java.util.concurrent.TimeUnit;

/**
 * @author youao.du@gmail.com
 * @create 2019-08-13 00:04
 */
@Component
public class RedisUtils {

    @Autowired
    private StringRedisTemplate redisTemplate;

    /**
     * 获取
     * @author youao.du@gmail.com
     * @time 00:06
     * @params key
     */
    public String getStr(String key) {
        return redisTemplate.opsForValue().get(key);
    }

    /**
     * 获取Long
     * @author youao.du@gmail.com
     * @time 16:48
     * @param key
     */
    public Long getLong(String key) {
        try {
            return Long.parseLong(redisTemplate.opsForValue().get(key));
        } catch (Exception e) {
            return null;
        }
    }

    public BigDecimal getBigDecimal(String key) {
        return new BigDecimal(redisTemplate.opsForValue().get(key));
    }

    /**
     * 数值增加
     * @author youao.du@gmail.com
     * @time 00:22
     * @param key
     * @param add
     */
    public Long increment(String key, Long add) {
        String str = getStr(key);
        if (!NumberUtil.isNumber(str)) {
            return null;
        }
        return redisTemplate.opsForValue().increment(key, add);
    }

    /**
     * 当字符串为Json格式时, 可转换对象 >>> 会返回空
     * @author youao.du@gmail.com
     * @time 00:08
     * @params [key, beanClass]
     */
    public <T> T getJsonToBean(String key, Class<T> beanClass) {
        String value = redisTemplate.opsForValue().get(key);
        if (JSONUtil.isJson(value)) {
            return JSONUtil.toBean(value, beanClass);
        }
        return null;
    }

    /**
     * 存值 key, value
     * @author youao.du@gmail.com
     * @time 00:21
     * @params [key, value]
     */
    public void set(String key, String value) {
        if (StrUtil.isNotBlank(key) && StrUtil.isNotBlank(value)) {
            redisTemplate.opsForValue().set(key, value);
        }
    }

    /**
     * 存值 key, value, time  >>>  时间单位: 秒
     * @author youao.du@gmail.com
     * @time 00:22
     * @params [key, value, time]
     */
    public void set(String key, String value, Long time) {
        if (StrUtil.isNotBlank(key) && StrUtil.isNotBlank(value)) {
            redisTemplate.opsForValue().set(key, value, time, TimeUnit.SECONDS);
        }
    }

    /**
     * 存值 >>> JSON
     * @author youao.du@gmail.com
     * @time 00:23
     * @params [key, value]
     */
    public <T> void setBean(String key, T value) {
        if (StrUtil.isNotBlank(key) && BeanUtil.isEmpty(value)) {
            set(key, JSONUtil.toJsonStr(value));
        }
    }

    /**
     * 存值 >>> JSON 时间单位: 秒数
     * @author youao.du@gmail.com
     * @time 00:29
     * @params [key, value, time]
     */
    public <T> void setBean(String key, T value, Long time) {
        if (StrUtil.isNotBlank(key) && BeanUtil.isEmpty(value)) {
            set(key, JSONUtil.toJsonStr(value), time);
        }
    }
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值