#|SpringBoot整合redis

SpringBoot整合redis #|SpringBoot整合redis
文章图片

目前就简短的测试下(还没学过redis)
修改测试文件

package com.example.springboot_redis; import org.junit.jupiter.api.Test; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.data.redis.core.BoundValueOperations; import org.springframework.data.redis.core.RedisTemplate; @SpringBootTest class SpringBootRedisApplicationTests { @Autowired private RedisTemplate redisTemplate; @Test void testSet() { //存入数据 redisTemplate.boundValueOps("name").set("张三"); }@Test void testGet() { //存入数据 Object name = redisTemplate.boundValueOps("name").get(); System.out.println(name); }}

【#|SpringBoot整合redis】然后运行本机的redis,在运行测试文件的set和get
然后再yaml文件修改端口
spring: redis: host:#redis的主机ip port:

    推荐阅读