Add auto-configuration for reactive Redis

This commit provides an auto-configuration for reactive Redis and a
starter that provides Lettuce as Jedis doesn't support reactive
operations.

There are no support for reactive redis repositories at the moment so
only a `ReactiveRedisTemplate` is auto-configured if necessary.

Closes gh-8053
This commit is contained in:
Stephane Nicoll
2017-05-04 09:25:36 +02:00
parent 0fbe903308
commit de268d97e2
8 changed files with 216 additions and 3 deletions

View File

@@ -389,6 +389,11 @@
<artifactId>spring-boot-starter-data-redis</artifactId>
<version>2.0.0.BUILD-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis-reactive</artifactId>
<version>2.0.0.BUILD-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-neo4j</artifactId>