SpringBoot06(spring整合redis)

用springboot整合redis的文件

  • 1-目录的路径:

  • 2-SpringRedisapplicationTests文件信息

@RunWith(SpringRunner.class)
@SpringBootTest
class SpringbootRedisApplicationTests {

    @Autowired
    private RedisTemplate redisTemplate;

    @Test
    public void testSet(){
        //存入数据
        redisTemplate.boundValueOps("name").set("zahngsan");
    }

    @Test
    public void testGet(){
        //获取数据
        Object name = redisTemplate.boundValueOps("name").get();
        System.out.println(name);
    }
}

posted on 2022-11-08 22:33  陈嘻嘻-  阅读(21)  评论(0编辑  收藏  举报

导航