From 8da5068cacb2f97e5d7b886b1248efbf1011be5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcel=20Wollschl=C3=A4ger?= Date: Tue, 24 Jan 2023 11:41:53 +0100 Subject: [PATCH] Update Redis example documentation With the release of Spring-Boot 3.x, the application properties for Redis changed from `spring.redis` to `spring.data.redis`. This change will update the documentation to be consistent with the latest changes in Spring-Boot. --- .../modules/ROOT/pages/guides/boot-redis.adoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spring-session-docs/modules/ROOT/pages/guides/boot-redis.adoc b/spring-session-docs/modules/ROOT/pages/guides/boot-redis.adoc index dc2f23be..4f4f53f7 100644 --- a/spring-session-docs/modules/ROOT/pages/guides/boot-redis.adoc +++ b/spring-session-docs/modules/ROOT/pages/guides/boot-redis.adoc @@ -75,9 +75,9 @@ For example, you can include the following in your application.properties: ==== .src/main/resources/application.properties ---- -spring.redis.host=localhost # Redis server host. -spring.redis.password= # Login password of the redis server. -spring.redis.port=6379 # Redis server port. +spring.data.redis.host=localhost # Redis server host. +spring.data.redis.password= # Login password of the redis server. +spring.data.redis.port=6379 # Redis server port. ---- ====