package com.zksy.data.utils; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.data.redis.core.RedisTemplate; import org.springframework.stereotype.Service; import java.util.List; @Service public class RedisService { @Autowired private RedisTemplate redisTemplate; public void saveList(String key, List list) { redisTemplate.opsForList().rightPushAll(key, list); } public List getList(String key) { return redisTemplate.opsForList().range(key, 0, -1); } }