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.
This commit is contained in:
Marcel Wollschläger
2023-01-24 11:41:53 +01:00
committed by Marcus Hert Da Coregio
parent 9276e1ddc6
commit 8da5068cac

View File

@@ -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.
----
====