1. Redis
Redis作为非关系型数据库,在项目开发中被大量的使用,尤其是作为数据的缓存来保证请求数据的快速响应,提升服务的用户体验。
今天就来学习一下Spring Boot项目中如何集成Redis作为缓存数据库。
1.1 引入Redis相关依赖
SpringBoot中对Redis的集进行了封装,提供了Spring Data Redis框架支持,Spring Data Redis在底层Spring的架构中定义与Redis数据库交互的逻辑,用户在使用时不需要关心如何管理,只需要在应用程序层面去操作Redis。
使用时需要引starter-data-redis依赖:
<!-- redis依赖信息 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
复制代码
1.2 依赖包含信息
依赖引入后,可以看到maven projects中相关的依赖包信息,其中包括了spring-data-redis和lettuce-core两个依赖包。
spring-data-redis
包含了Spring对data处理的一些公共包lettuce-core
包是starter-data-redis中对lettuce的默认支持
1.3 Jedis客户端依赖
如果需要使用Jedis来操作Redis,只需要将lettuce的依赖替换为Jedis即可。
<!--导入jedis-->
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
</dependency>
复制代码
2. Redis配置
Spring Boot在org.springframework.boot.autoconfigure.data.redis
包中为redis提供了自动配置。其中定义有:
RedisAutoConfiguration</