From 0cc2e57461b1700e6e1bb2f6485fd9b21e97ecfb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Nicoll?= Date: Tue, 25 Nov 2025 09:51:21 +0100 Subject: [PATCH] Polish "Document that spring-boot-h2console is required" We can simplify the original proposal as spring-boot-h2console brings H2 if needed. See gh-48278 --- .../src/docs/antora/modules/reference/pages/data/sql.adoc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/documentation/spring-boot-docs/src/docs/antora/modules/reference/pages/data/sql.adoc b/documentation/spring-boot-docs/src/docs/antora/modules/reference/pages/data/sql.adoc index eca4b0c9efd..1042da0ca51 100644 --- a/documentation/spring-boot-docs/src/docs/antora/modules/reference/pages/data/sql.adoc +++ b/documentation/spring-boot-docs/src/docs/antora/modules/reference/pages/data/sql.adoc @@ -346,8 +346,7 @@ The https://www.h2database.com[H2 database] provides a https://www.h2database.co The console is auto-configured when the following conditions are met: * You are developing a servlet-based web application. -* `org.springframework.boot:spring-boot-h2console` added as dependency. -* `com.h2database:h2` is on the classpath. +* `org.springframework.boot:spring-boot-h2console` is on the classpath. * You are using xref:using/devtools.adoc[Spring Boot's developer tools]. TIP: If you are not using Spring Boot's developer tools but would still like to make use of H2's console, you can configure the configprop:spring.h2.console.enabled[] property with a value of `true`.