redistemplate无法从本地redis获取数据

eyh26e7m  于 2021-06-09  发布在  Redis
关注(0)|答案(0)|浏览(294)

在我当地的redis

lrange tmpList range 0 10
"a"
"b"

我的测试

import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.data.redis.core.RedisTemplate;
import java.util.List;

@SpringBootTest

    public class RedisTest {

        @Autowired
        RedisTemplate redisTemplate;

        @Test
        void showRedisTemplate() {
            List<String> strings = redisTemplate.opsForList().range("tmpList", 0, 10);
            System.out.println(strings.get(0));
        }

    }

它显示java.lang.indexoutofboundsexception:索引:0,大小:0
我的redis是5.05

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题