-
Notifications
You must be signed in to change notification settings - Fork 40.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add customizer for jOOQ's configuration
This commit adds a customizer hook point for jOOQ's configuration. When such a bean is present, it is invoked with the auto-configuration `Configuration`. This effectively supersedes checking for a number of jOOQ `*Provider`beans. The existing beans are still honoured, in a deprecated fashion. Closes gh-24732
- Loading branch information
Showing
4 changed files
with
105 additions
and
28 deletions.
There are no files selected for viewing
37 changes: 37 additions & 0 deletions
37
...main/java/org/springframework/boot/autoconfigure/jooq/DefaultConfigurationCustomizer.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/* | ||
* Copyright 2012-2021 the original author or authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.springframework.boot.autoconfigure.jooq; | ||
|
||
import org.jooq.impl.DefaultConfiguration; | ||
|
||
/** | ||
* Callback interface that can be implemented by beans wishing to customize the | ||
* {@link DefaultConfiguration} whilst retaining default auto-configuration. | ||
* | ||
* @author Stephane Nicoll | ||
* @since 2.5.0 | ||
*/ | ||
@FunctionalInterface | ||
public interface DefaultConfigurationCustomizer { | ||
|
||
/** | ||
* Customize the {@link DefaultConfiguration jOOQ Configuration}. | ||
* @param configuration the configuration to customize | ||
*/ | ||
void customize(DefaultConfiguration configuration); | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters