java.lang.NullPointerException: Cannot invoke “org.springframework.data.redis.core.RedisTemplate.ops

报错信息是:java.lang.NullPointerException: Cannot invoke “org.springframework.data.redis.core.RedisTemplate.opsForValue()” because “this.redisTemplate” is null

首先确保自己引入了对应的 依赖文件

       <dependency>
           <!-- 这个版本号码需要和 SpringBootStart 版本号码一致 -->
           <groupId>org.springframework.boot</groupId>
           <artifactId>spring-boot-starter-data-redis</artifactId>
           <version>2.7.13</version>
       </dependency>

和对应的配置

spring:
  # redis
  redis:
    port: 6379
    host: localhost
    database: 0

下面出错的测试代码

import com.yupi.user_center.model.domain.User;
import org.junit.jupiter.api.Assertions;
import org.junit.Test;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.data.redis.core.ValueOperations;

import javax.annotation.Resource;

@SpringBootTest
public class RedisTest {
    @Resource
    private RedisTemplate redisTemplate;

    @Test
    public void test() {
        ValueOperations valueOperations = redisTemplate.opsForValue();

        // add
        valueOperations.set("dog", "dog");
        valueOperations.set("leikooo", 21);
        User user = new User();
        user.setId(0L);
        user.setUsername("leikooo");
        valueOperations.set("user", user);

        // select
        Object value = valueOperations.get("dog");
        Assertions.assertTrue("dog".equals(value));

        value = valueOperations.get("leikooo");
        Assertions.assertTrue(21 == (Integer) value);

        System.out.println(valueOperations.get("user"));
    }
}

直接报错

在这里插入图片描述
但是我发现了一个问题就是 SpringBoot 这么没启动?

之后仔细检查发现是自己用错了注解, 我不应该使用import org.junit.Test; 而是应该使用 import org.junit.jupiter.api.Test;

在这里插入图片描述

拿到数据!

  • 4
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 2
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值