Fix location of Spring LDAP and Spring Session properties

Closes gh-23558
This commit is contained in:
Stephane Nicoll
2020-11-18 10:28:54 +01:00
parent d96ff16da9
commit f3afd8a0f4

View File

@@ -33,7 +33,7 @@ def generateConfigMetadataDocumentation() {
.addSection("web") .addSection("web")
.withKeyPrefixes("spring.hateoas", .withKeyPrefixes("spring.hateoas",
"spring.http", "spring.servlet", "spring.jersey", "spring.http", "spring.servlet", "spring.jersey",
"spring.mvc", "spring.resources", "spring.webflux") "spring.mvc", "spring.resources", "spring.session", "spring.webflux")
.addSection("json") .addSection("json")
.withKeyPrefixes("spring.jackson", "spring.gson") .withKeyPrefixes("spring.jackson", "spring.gson")
.addSection("rsocket") .addSection("rsocket")
@@ -42,12 +42,12 @@ def generateConfigMetadataDocumentation() {
.withKeyPrefixes("spring.freemarker", "spring.groovy", "spring.mustache", "spring.thymeleaf") .withKeyPrefixes("spring.freemarker", "spring.groovy", "spring.mustache", "spring.thymeleaf")
.addOverride("spring.groovy.template.configuration", "See GroovyMarkupConfigurer") .addOverride("spring.groovy.template.configuration", "See GroovyMarkupConfigurer")
.addSection("security") .addSection("security")
.withKeyPrefixes("spring.security", "spring.ldap", "spring.session") .withKeyPrefixes("spring.security")
.addSection("data-migration") .addSection("data-migration")
.withKeyPrefixes("spring.flyway", "spring.liquibase") .withKeyPrefixes("spring.flyway", "spring.liquibase")
.addSection("data") .addSection("data")
.withKeyPrefixes("spring.couchbase", "spring.elasticsearch", "spring.h2", .withKeyPrefixes("spring.couchbase", "spring.elasticsearch", "spring.h2",
"spring.influx", "spring.mongodb", "spring.redis", "spring.influx", "spring.ldap", "spring.mongodb", "spring.redis",
"spring.dao", "spring.data", "spring.datasource", "spring.jooq", "spring.dao", "spring.data", "spring.datasource", "spring.jooq",
"spring.jdbc", "spring.jpa") "spring.jdbc", "spring.jpa")
.addOverride("spring.datasource.dbcp2", "Commons DBCP2 specific settings bound to an instance of DBCP2's BasicDataSource") .addOverride("spring.datasource.dbcp2", "Commons DBCP2 specific settings bound to an instance of DBCP2's BasicDataSource")