From a20cc3d4e6c92c08f2e4b257778a48faff4958d7 Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Fri, 15 Nov 2024 13:26:45 -0800 Subject: [PATCH] Clarify documentation for 'spring.datasource.type' Closes gh-43193 --- .../boot/autoconfigure/jdbc/DataSourceProperties.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jdbc/DataSourceProperties.java b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jdbc/DataSourceProperties.java index 03603c56d42..1504b86b83e 100644 --- a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jdbc/DataSourceProperties.java +++ b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jdbc/DataSourceProperties.java @@ -61,8 +61,8 @@ public class DataSourceProperties implements BeanClassLoaderAware, InitializingB private String name; /** - * Fully qualified name of the connection pool implementation to use. By default, it - * is auto-detected from the classpath. + * Fully qualified name of the DataSource implementation to use. By default, a + * connection pool implementation is auto-detected from the classpath. */ private Class type;