Skip to content

Commit f0338c9

Browse files
committed
Merge pull request #20727 from parameswaranvv
* gh-20727: Polish "Make it clear to which type the DataSource properties are bound" Make it clear to which type the DataSource properties are bound Closes gh-20727
2 parents ed2196f + 6d7c3da commit f0338c9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

spring-boot-project/spring-boot-docs/src/main/groovy/generateConfigurationPropertyTables.groovy

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@ def generateConfigMetadataDocumentation() {
5454
"spring.influx", "spring.mongodb", "spring.redis",
5555
"spring.dao", "spring.data", "spring.datasource", "spring.jooq",
5656
"spring.jdbc", "spring.jpa")
57-
.addOverride("spring.datasource.dbcp2", "Commons DBCP2 specific settings")
58-
.addOverride("spring.datasource.tomcat", "Tomcat datasource specific settings")
59-
.addOverride("spring.datasource.hikari", "Hikari specific settings")
57+
.addOverride("spring.datasource.dbcp2", "Commons DBCP2 specific settings bound to an instance of DBCP2's BasicDataSource")
58+
.addOverride("spring.datasource.tomcat", "Tomcat datasource specific settings bound to an instance of Tomcat JDBC's DataSource")
59+
.addOverride("spring.datasource.hikari", "Hikari specific settings bound to an instance of Hikari's HikariDataSource")
6060
.addSection("transaction")
6161
.withKeyPrefixes("spring.jta", "spring.transaction")
6262
.addSection("integration")

0 commit comments

Comments
 (0)