Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cache 'effective' Docket instance in DefaultAsyncApiDocketService #411

Closed
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -25,18 +25,27 @@ public class DefaultAsyncApiDocketService implements AsyncApiDocketService {
*/
private final SpringwolfConfigProperties configProperties;

/**
* valid Docket instance, either reference to customDocket (if set) or environment based Docket.
* Lazy initialized on first invocation of getAsyncApiDocket().
*/
private AsyncApiDocket effectiveDocket;

@Override
public AsyncApiDocket getAsyncApiDocket() {
if (customDocket.isPresent()) {
log.debug("Reading springwolf configuration from custom defined @Bean AsyncApiDocket");
return customDocket.get();
} else {
log.debug("Reading springwolf configuration from application.properties files");
return parseApplicationConfigProperties(configProperties);
if (effectiveDocket == null) {
if (customDocket.isPresent()) {
log.debug("Reading springwolf configuration from custom defined @Bean AsyncApiDocket");
effectiveDocket = customDocket.get();
} else {
log.debug("Reading springwolf configuration from application.properties files");
effectiveDocket = parseApplicationConfigProperties();
}
}
return effectiveDocket;
}

private AsyncApiDocket parseApplicationConfigProperties(SpringwolfConfigProperties configProperties) {
private AsyncApiDocket parseApplicationConfigProperties() {
if (configProperties.getDocket() == null || configProperties.getDocket().getBasePackage() == null) {
throw new IllegalArgumentException(
"One or more required fields (docket, basePackage) " + "in application.properties with path prefix "
Expand Down