SpringBoot整合redis

2022/6/22 2:19:48

本文主要是介绍SpringBoot整合redis,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

1.导入依赖

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

 

2.配置连接

spring.redis.host=    ip地址
spring.redis.port= 6379

 

3.测试

@SpringBootTest
class Redis02SpringbootApplicationTests {

    @Resource
    private RedisTemplate redisTemplate;

    @Test
    void contextLoads() {

        //opsForValue 操作字符串 类似String
        //opsForList  操作list  类似List
        //opsForHash
        //opsForSet
        //opsForZSet
        //opsForGeo
        //opsForHyperLogLog


         //获取redis的连接对象
//        RedisConnection connection = redisTemplate.getConnectionFactory().getConnection();
//        connection.flushDb();
//        connection.flushAll();


         redisTemplate.opsForValue().set("mykey","redis");
        Object mykey = redisTemplate.opsForValue().get("mykey");
        System.out.println(mykey);


    }

 



这篇关于SpringBoot整合redis的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程