整合篇:零基础学习与使用Redis

目录


配套资料,免费下载
链接:https://pan.baidu.com/s/1jA217UgqXpONi_fV-aOzqw
提取码:bm2g
复制这段内容后打开百度网盘手机App,操作更方便哦

注意:学习Redis请参考我的另外一篇文章:https://caochenlei.blog.csdn.net/article/details/108067929

1、创建工程

整合篇:零基础学习与使用Redis

整合篇:零基础学习与使用Redis

整合篇:零基础学习与使用Redis

整合篇:零基础学习与使用Redis

整合篇:零基础学习与使用Redis

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);
    }
}
上一篇:tensorflow版本2.0和1.0兼容问题:The Session graph is empty. Add operations to the graph before calling run()


下一篇:Java IO学习FileInputStream的read方法出现(无法将类 com.sun.org.apache.xpath.internal.operations.String中的构造器 Stri