当前位置:   article > 正文

SpringBoot中集成Redis_spring.redis.client-type

spring.redis.client-type

1. Redis

Redis作为非关系型数据库,在项目开发中被大量的使用,尤其是作为数据的缓存来保证请求数据的快速响应,提升服务的用户体验。

今天就来学习一下Spring Boot项目中如何集成Redis作为缓存数据库。

1.1 引入Redis相关依赖

SpringBoot中对Redis的集进行了封装,提供了Spring Data Redis框架支持,Spring Data Redis在底层Spring的架构中定义与Redis数据库交互的逻辑,用户在使用时不需要关心如何管理,只需要在应用程序层面去操作Redis。

使用时需要引starter-data-redis依赖:

  1. <!-- redis依赖信息 -->
  2. <dependency>
  3.    <groupId>org.springframework.boot</groupId>
  4.    <artifactId>spring-boot-starter-data-redis</artifactId>
  5. </dependency>
  6. 复制代码

1.2 依赖包含信息

依赖引入后,可以看到maven projects中相关的依赖包信息,其中包括了spring-data-redis和lettuce-core两个依赖包。

  • spring-data-redis包含了Spring对data处理的一些公共包
  • lettuce-core包是starter-data-redis中对lettuce的默认支持

image-20211127220016311

1.3 Jedis客户端依赖

如果需要使用Jedis来操作Redis,只需要将lettuce的依赖替换为Jedis即可。

  1. <!--导入jedis-->        
  2. <dependency>            
  3.    <groupId>redis.clients</groupId>            
  4.    <artifactId>jedis</artifactId>        
  5. </dependency>
  6. 复制代码

2. Redis配置

Spring Boot在org.springframework.boot.autoconfigure.data.redis包中为redis提供了自动配置。其中定义有:

  • RedisAutoConfig
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/152179
推荐阅读
相关标签
  

闽ICP备14008679号