SpringBoot定时任务(Redis定时写入数据)

CSDN话题挑战赛第2期
参赛话题:​​​​​​​学习笔记

SpringBoot定时任务使用注解

@Bean

Spring的@Bean注解用于告诉方法,产生一个Bean对象,然后这个Bean对象交给Spring管理。产生这个Bean对象的方法Spring只会调用一次,随后这个Spring将会将这个Bean对象放在自己的IOC容器中。

SpringIOC 容器管理一个或者多个bean,这些bean都需要在@Configuration注解下进行创建,在一个方法上使用@Bean注解就表明这个方法需要交给Spring进行管理。

@Scheduled

需要在启动类添加@EnableScheduling,启用Spring的计划执行功能,这样可以在容器中的任何Spring管理的bean上检测@Scheduled注解,执行计划任务

//每天凌晨两点执行一次

@Scheduled(cron = "0 0 2 * * ?")

//每8秒执行一次

@Scheduled(cron = "*/8 * * * * ?")

目录

SpringBoot定时任务

@Bean

@Scheduled

Redis定时写入数据

Redis工具类


Redis定时写入数据

写入redis数据要对应库中各个字段 以下是我库中测试字段

定时任务建议专门写一个类 不要与其他controller层混合

下篇文章我再介绍下ClickHouse定时写入数据~

SpringBoot定时任务(Redis定时写入数据)_第1张图片

@EnableAutoConfiguration
@Component
@Configuration
@Order(value = 2)
public class ScheduledTaskUtils {
    //启动初始化导入一次
    @Bean
    public void initTestClickHouse() {
        testClickHouse();
    }

    //每8秒执行一次
    @Scheduled(cron = "*/8 * * * * ?")
    public void testClickHouse() {
            ControlVO test = new ControlVO();
            test.setTag(CodeUtils.getFanAttributes(code, "CU"));
            int x = 0;
            int y = 3;
            //随机塞入0-3的值
            int num = x + (int) (Math.random() * (y - x + 1));
            test.setValue((double) num);
            RealtimeData realtimeData = new RealtimeData(test.getTag(), 0, test.getValue().intValue(), 0);
            redisDataCache.setCacheObject(test.getTag(), JSON.parseObject(JSON.toJSONString(realtimeData), Map.class));
    }

}

//查出所选的标准点实时值

List datas = redisDataCache.getCacheRealtime(key);

key为redis表名 

Redis工具类

import org.springframework.data.redis.core.BoundSetOperations;
import org.springframework.data.redis.core.HashOperations;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.data.redis.core.ValueOperations;
import org.springframework.stereotype.Component;

import javax.annotation.Resource;
import java.util.*;
import java.util.concurrent.TimeUnit;

/**
 * spring redis 工具类
 *
 **/
@SuppressWarnings(value = {"unchecked", "rawtypes"})
@Component
public class RedisDataCache {

    @Resource(name = "redisDataTemplate")
    public RedisTemplate redisTemplate;

    /**
     * 缓存基本的对象,Integer、String、实体类等
     *
     * @param key   缓存的键值
     * @param value 缓存的值
     */
    public  void setCacheObject(final String key, final T value) {
        redisTemplate.opsForValue().set(key, value);
    }

    /**
     * 缓存基本的对象,Integer、String、实体类等
     *
     * @param key      缓存的键值
     * @param value    缓存的值
     * @param timeout  时间
     * @param timeUnit 时间颗粒度
     */
    public  void setCacheObject(final String key, final T value, final Integer timeout, final TimeUnit timeUnit) {
        redisTemplate.opsForValue().set(key, value, timeout, timeUnit);
    }

    /**
     * 设置有效时间
     *
     * @param key     Redis键
     * @param timeout 超时时间
     * @return true=设置成功;false=设置失败
     */
    public boolean expire(final String key, final long timeout) {
        return expire(key, timeout, TimeUnit.SECONDS);
    }

    /**
     * 设置有效时间
     *
     * @param key     Redis键
     * @param timeout 超时时间
     * @param unit    时间单位
     * @return true=设置成功;false=设置失败
     */
    public boolean expire(final String key, final long timeout, final TimeUnit unit) {
        return redisTemplate.expire(key, timeout, unit);
    }

    /**
     * 获得缓存的基本对象。
     *
     * @param key 缓存键值
     * @return 缓存键值对应的数据
     */
    public  T getCacheObject(final String key) {
        ValueOperations operation = redisTemplate.opsForValue();
        return operation.get(key);
    }

    /**
     * 删除单个对象
     *
     * @param key
     */
    public boolean deleteObject(final String key) {
        return redisTemplate.delete(key);
    }

    /**
     * 删除集合对象
     *
     * @param collection 多个对象
     * @return
     */
    public long deleteObject(final Collection collection) {
        return redisTemplate.delete(collection);
    }

    /**
     * 缓存List数据
     *
     * @param key      缓存的键值
     * @param dataList 待缓存的List数据
     * @return 缓存的对象
     */
    public  long setCacheList(final String key, final List dataList) {
        Long count = redisTemplate.opsForList().rightPushAll(key, dataList);
        return count == null ? 0 : count;
    }

    /**
     * 获得缓存的list对象
     *
     * @param key 缓存的键值
     * @return 缓存键值对应的数据
     */
    public  List getCacheList(final String key) {
        return redisTemplate.opsForList().range(key, 0, -1);
    }

    /**
     * 缓存Set
     *
     * @param key     缓存键值
     * @param dataSet 缓存的数据
     * @return 缓存数据的对象
     */
    public  BoundSetOperations setCacheSet(final String key, final Set dataSet) {
        BoundSetOperations setOperation = redisTemplate.boundSetOps(key);
        Iterator it = dataSet.iterator();
        while (it.hasNext()) {
            setOperation.add(it.next());
        }
        return setOperation;
    }

    /**
     * 获得缓存的set
     *
     * @param key
     * @return
     */
    public  Set getCacheSet(final String key) {
        return redisTemplate.opsForSet().members(key);
    }

    /**
     * 缓存Map
     *
     * @param key
     * @param dataMap
     */
    public  void setCacheMap(final String key, final Map dataMap) {
        if (dataMap != null) {
            redisTemplate.opsForHash().putAll(key, dataMap);
        }
    }

    /**
     * 获得缓存的Map
     *
     * @param key
     * @return
     */
    public  Map getCacheMap(final String key) {
        return redisTemplate.opsForHash().entries(key);
    }

    /**
     * 往Hash中存入数据
     *
     * @param key   Redis键
     * @param hKey  Hash键
     * @param value 值
     */
    public  void setCacheMapValue(final String key, final String hKey, final T value) {
        redisTemplate.opsForHash().put(key, hKey, value);
    }

    /**
     * 获取Hash中的数据
     *
     * @param key  Redis键
     * @param hKey Hash键
     * @return Hash中的对象
     */
    public  T getCacheMapValue(final String key, final String hKey) {
        HashOperations opsForHash = redisTemplate.opsForHash();
        return opsForHash.get(key, hKey);
    }

    /**
     * 获取多个Hash中的数据
     *
     * @param key   Redis键
     * @param hKeys Hash键集合
     * @return Hash对象集合
     */
    public  List getMultiCacheMapValue(final String key, final Collection hKeys) {
        return redisTemplate.opsForHash().multiGet(key, hKeys);
    }

    /**
     * 获得缓存的基本对象列表
     *
     * @param pattern 字符串前缀
     * @return 对象列表
     */
    public Collection keys(final String pattern) {
        return redisTemplate.keys(pattern);
    }

    /**
     * 获得缓存的基本对象。
     *
     * @param keys 缓存键值
     * @return 缓存键值对应的数据
     */
    public  List getCacheObjects(final Collection keys) {
        ValueOperations operation = redisTemplate.opsForValue();
        return operation.multiGet(keys);
    }

    /**
     * 获得缓存的基本对象。
     *
     * @param keys 缓存键值
     * @return 缓存键值对应的数据
     */
    public List getCacheRealtime(final Collection keys) {
        ValueOperations operation = redisTemplate.opsForValue();
        List datas = operation.multiGet(keys);
        List realtimeDatas = new ArrayList();
        for (LinkedHashMap data : datas) {
            if (data != null) {
                String tag = data.get("tag").toString();
                int q = Integer.parseInt(data.get("q").toString());
                long t = Long.parseLong(data.get("t").toString());
                double v = Double.parseDouble(data.get("v").toString());
                RealtimeData d = new RealtimeData(tag, q, v, t);
                realtimeDatas.add(d);
            }
        }
        return realtimeDatas;
    }

}
 
  

大家根据自己redis表字段调整 主要就是 setCacheObject方法

有遇到什么问题欢迎评论区讨论

你可能感兴趣的:(Redis,开发合集,java,redis,spring)