1、需求和步骤
2、建一个Module
3、建一个包
4、勾选NoSql
5、勾选Spring Data Redis中的选项
6、勾选redis的内容
7、这是redis的起步依赖坐标
8、我们想要测试redis的起步依赖怎么做:
1. @Autowired 2. private RedisTemplate redisTemplate;
9、
9.1代码总结:
1. package com.itheima.springbootredis; 2. 3. import org.junit.Test; 4. import org.junit.runner.RunWith; 5. import org.springframework.beans.factory.annotation.Autowired; 6. import org.springframework.boot.test.context.SpringBootTest; 7. import org.springframework.data.redis.core.BoundValueOperations; 8. import org.springframework.data.redis.core.RedisTemplate; 9. import org.springframework.test.context.junit4.SpringRunner; 10. 11. @RunWith(SpringRunner.class) 12. @SpringBootTest 13. public class SpringbootRedisApplicationTests { 14. 15. @Autowired 16. private RedisTemplate redisTemplate; 17. 18. @Test 19. public void testSet() { 20. //存入数据 21. redisTemplate.boundValueOps("name").set("zhangsan"); 22. } 23. 24. @Test 25. public void testGet() { 26. //获取数据 27. Object name = redisTemplate.boundValueOps("name").get(); 28. System.out.println(name); 29. } 30. 31. }
10、调用对应的getter方法:
11、只有本机的redis不用进行配置
12、打开我们的redis配置信息
13、启动完之后,我们运行一下
14、
15、如果你想对redis进行一些配置,弄一个yml文件
16、弄一个redis的连接地址
17、端口