步骤①:导入springboot整合redis的starter坐标

    1. <dependency>
    2. <groupId>org.springframework.boot</groupId>
    3. <artifactId>spring-boot-starter-data-redis</artifactId>
    4. </dependency>

    步骤②:进行基础配置

    spring:
      redis:
        host: localhost
        port: 6379
    

    操作redis,最基本的信息就是操作哪一台redis服务器,所以服务器地址属于基础配置信息,不可缺少。但是即便你不配置,目前也是可以用的。因为以上两组信息都有默认配置,刚好就是上述配置值。
    步骤③:使用springboot整合redis的专用客户端接口操作,此处使用的是RedisTemplate

    @SpringBootTest
    class Springboot16RedisApplicationTests {
        @Autowired
        private RedisTemplate redisTemplate;
        @Test
        void set() {
            ValueOperations ops = redisTemplate.opsForValue();
            ops.set("age",41);
        }
        @Test
        void get() {
            ValueOperations ops = redisTemplate.opsForValue();
            Object age = ops.get("name");
            System.out.println(age);
        }
        @Test
        void hset() {
            HashOperations ops = redisTemplate.opsForHash();
            ops.put("info","b","bb");
        }
        @Test
        void hget() {
            HashOperations ops = redisTemplate.opsForHash();
            Object val = ops.get("info", "b");
            System.out.println(val);
        }
    }