From 0bd268fdf0d5319f4725e5a8d49afdcbb6fd1c95 Mon Sep 17 00:00:00 2001 From: John Blum Date: Wed, 13 Nov 2019 23:19:15 -0800 Subject: [PATCH] SGF-895 - Add warning in the 'Configuring the Embedded Redis Server' documentation explaining to users that the 'org.apache.geode:geode-redis' module must be explicitly declared on the Spring [Boot] application classpath when usign the @EnableRedisServer annotation. --- src/main/asciidoc/reference/bootstrap-annotations.adoc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/asciidoc/reference/bootstrap-annotations.adoc b/src/main/asciidoc/reference/bootstrap-annotations.adoc index cb4e4eb3..0479a830 100644 --- a/src/main/asciidoc/reference/bootstrap-annotations.adoc +++ b/src/main/asciidoc/reference/bootstrap-annotations.adoc @@ -793,6 +793,9 @@ or `@CacheServerApplication` annotated class, as follows: public class ServerApplication { .. } ---- +WARNING: You must explicitly declare the `org.apache.geode:geode-redis` module on your Spring [Boot] application +classpath. + More details on {data-store-name}'s Redis adapter can be found {x-data-store-docs}/tools_modules/redis_adapter.html[here].