SpringBoot整合Redis(简易版,快速上手使用)

Spring整合Redis


一、引入jar包

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-redis</artifactId>
        </dependency>

二、使用步骤

1.加入配置

spring:
  redis:
    host: 127.0.0.1
    port: 6379
#    password: 111  没有密码就不配置

2.开始使用

咱们来进行测试:

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

    @Autowired
    private RedisTemplate<String,String> redisTemplate;


    @Test
    void testSet(){
        redisTemplate.opsForValue().set("isKey","isValue");
        System.out.println(redisTemplate.opsForValue().get("isKey"));
    }
 
	@Test
    void testDelete(){
        redisTemplate.delete("isKey");
        System.out.println("删除成功");
    }
 }

3.测试效果

运行testSet测试方法会看到:
SpringBoot整合Redis(简易版,快速上手使用)
运行testDelete测试方法会看到:
SpringBoot整合Redis(简易版,快速上手使用)


总结

以上就是SpringBoot整合Redis的简易内容

上一篇:java第一个类


下一篇:【日常小技巧】Markdown常用语法