Browse Source

Clarify documentation for 'spring.datasource.type'

Closes gh-43193
3.2.x
Phillip Webb 1 year ago
parent
commit
a20cc3d4e6
  1. 4
      spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jdbc/DataSourceProperties.java

4
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; private String name;
/** /**
* Fully qualified name of the connection pool implementation to use. By default, it * Fully qualified name of the DataSource implementation to use. By default, a
* is auto-detected from the classpath. * connection pool implementation is auto-detected from the classpath.
*/ */
private Class<? extends DataSource> type; private Class<? extends DataSource> type;

Loading…
Cancel
Save