From e517dcb799018ed2a09c2f5d398de51b09f3b015 Mon Sep 17 00:00:00 2001 From: Ryan Baxter Date: Mon, 22 May 2023 09:42:37 -0400 Subject: [PATCH] Update spring-cloud-config.adoc for JDBC dependency Fixes #2268 --- docs/src/main/asciidoc/spring-cloud-config.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/main/asciidoc/spring-cloud-config.adoc b/docs/src/main/asciidoc/spring-cloud-config.adoc index 87a19f52..8d2c3c48 100644 --- a/docs/src/main/asciidoc/spring-cloud-config.adoc +++ b/docs/src/main/asciidoc/spring-cloud-config.adoc @@ -883,7 +883,7 @@ For example, if you add parameters with the following names, all applications us ==== JDBC Backend Spring Cloud Config Server supports JDBC (relational database) as a backend for configuration properties. -You can enable this feature by adding `spring-jdbc` to the classpath and using the `jdbc` profile or by adding a bean of type `JdbcEnvironmentRepository`. +You can enable this feature by adding `spring-boot-starter-data-jdbc` to the classpath and using the `jdbc` profile or by adding a bean of type `JdbcEnvironmentRepository`. If you include the right dependencies on the classpath (see the user guide for more details on that), Spring Boot configures a data source. // TODO Which user guide? When we know that, we should add a link to it.