注入失败的代码:
import org.junit.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.redis.core.StringRedisTemplate;
public class LearnTest {
@Autowired
StringRedisTemplate stringRedisTemplate;
@Test
public void testRedis()
{
stringRedisTemplate.opsForValue().set("v","ymy");
System.out.println(stringRedisTemplate.opsForValue().get("a"));
}
}
已配置好Redis,再验证是否能够连接成功的时候,发现执行到stringRedisTemplate.opsForValue()的时候会报错:空指针异常,Debug发现,stringRedisTemplate为null,竟然没有成功注入。
解决方法:
设置在运行类的时候,启动整个springboot项目,从而达到自动注入的效果,在测试方法运行结束后,springboot项目也就会关闭了。
在测试类上加上这个注解即可,就可以使用@Autowired注解了
此处参考:
https://blog.csdn.net/mrhamster/article/details/103393853
import cn.ymy.redis.HomeApplication;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.data.redis.core.StringRedisTemplate;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@SpringBootTest(classes = HomeApplication.class)
public class LearnTest {
@Autowired
StringRedisTemplate stringRedisTemplate;
@Test
public void testRedis()
{
stringRedisTemplate.opsForValue().set("v","ymy");
System.out.println(stringRedisTemplate.opsForValue().get("v"));
}
}
这个时候就能成功注入依赖了
版权声明:本文为m0_67390379原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。