yml

redis:
    host: 192.168.0.112
    port: 6379
    pool:
      max-active: 8
      max-wait: 1
      max-idle: 8
      min-idle: 0
    timeout: 5000
@RestController
public class RedisController {
	//当你的redis数据库里面本来存的是字符串数据或者你要存取的数据就是字符串类型数据的时候,那么你就使用StringRedisTemplate即可
    @Autowired
    private StringRedisTemplate stringRedisTemplate;
    //如果你的数据是复杂的对象类型,而取出的时候又不想做任何的数据转换,直接从Redis里面取出一个对象,那么使用RedisTemplate是更好的选择
    @Autowired
    private RedisTemplate redisTemplate;

    @GetMapping("/redis")
    private String hello() {
        stringRedisTemplate.opsForValue().set("hello","world");
        System.out.println(stringRedisTemplate.hasKey("hello"));//简单判断,小例子
        return "SUCCESS";
    }

}

可以参考