NoSQL

Spring Boot 提供了许多支持 NoSQL 技术的启动器。本节回答了使用 Spring Boot 与 NoSQL 相关的问题。

使用 Jedis 代替 Lettuce

默认情况下,Spring Boot 启动器 (spring-boot-starter-data-redis) 使用 Lettuce。您需要排除该依赖项,并改为包含 Jedis。Spring Boot 管理这两个依赖项,允许您在不指定版本的情况下切换到 Jedis。

以下示例展示了如何在 Maven 中实现此操作

<dependency>
	<groupId>org.springframework.boot</groupId>
	<artifactId>spring-boot-starter-data-redis</artifactId>
	<exclusions>
		<exclusion>
			<groupId>io.lettuce</groupId>
			<artifactId>lettuce-core</artifactId>
		</exclusion>
	</exclusions>
</dependency>
<dependency>
	<groupId>redis.clients</groupId>
	<artifactId>jedis</artifactId>
</dependency>

以下示例展示了如何在 Gradle 中实现此操作

dependencies {
	implementation('org.springframework.boot:spring-boot-starter-data-redis') {
	    exclude group: 'io.lettuce', module: 'lettuce-core'
	}
	implementation 'redis.clients:jedis'
	// ...
}