From c34516cd9e5a371d725e60fa4fc5bdd337440f57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jens=20Teglhus=20M=C3=B8ller?= Date: Mon, 4 Nov 2019 23:35:58 +0100 Subject: [PATCH 1/2] Document Settings as jooq supported auto-configuration type See gh-18870 --- .../spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc | 1 + 1 file changed, 1 insertion(+) diff --git a/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc b/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc index e03ac45db6..77ad01b6f6 100644 --- a/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc +++ b/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc @@ -3489,6 +3489,7 @@ You can define beans for the following jOOQ Types: * `ExecuteListenerProvider` * `VisitListenerProvider` * `TransactionListenerProvider` +* `Settings` You can also create your own `org.jooq.Configuration` `@Bean` if you want to take complete control of the jOOQ configuration. From 5863a75c3c37adc7f0698e4f8e9f3b3ba1bb8545 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Tue, 5 Nov 2019 09:18:32 +0100 Subject: [PATCH 2/2] Polish "Document Settings as jooq supported auto-configuration type" See gh-18870 --- .../src/main/asciidoc/spring-boot-features.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc b/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc index 77ad01b6f6..8214d6057c 100644 --- a/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc +++ b/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc @@ -3485,11 +3485,11 @@ You can define beans for the following jOOQ Types: * `TransactionProvider` * `RecordMapperProvider` * `RecordUnmapperProvider` +* `Settings` * `RecordListenerProvider` * `ExecuteListenerProvider` * `VisitListenerProvider` * `TransactionListenerProvider` -* `Settings` You can also create your own `org.jooq.Configuration` `@Bean` if you want to take complete control of the jOOQ configuration.