目录
配套资料,免费下载
链接:https://pan.baidu.com/s/1jA217UgqXpONi_fV-aOzqw
提取码:bm2g
复制这段内容后打开百度网盘手机App,操作更方便哦
注意:学习Redis请参考我的另外一篇文章:https://caochenlei.blog.csdn.net/article/details/108067929
1、创建工程
2、开启软件
下载配套资料,点击 startup.bat 启动软件即可。
3、修改配置
spring:
redis:
host: 127.0.0.1
port: 6379
password: 123456
4、测试操作
@SpringBootTest
class IntegrationRedisApplicationTests {
@Autowired
private RedisTemplate<String, String> redisTemplate;
@Test
@DisplayName("设置操作")
public void testSet() {
ValueOperations<String, String> operations = redisTemplate.opsForValue();
operations.set("code", "741852963");
}
@Test
@DisplayName("获取操作")
public void testGet() {
ValueOperations<String, String> operations = redisTemplate.opsForValue();
String code = operations.get("code");
System.out.println(code);
}
}