-
-
Notifications
You must be signed in to change notification settings - Fork 581
Closed
Description
Hi,
While using swagger 2 wih spring boot, we used to put @configuration
@EnableSwagger2 annotation on top of a class with
@bean
public Docket api() {
return new Docket(DocumentationType.SWAGGER_2).directModelSubstitute(ZonedDateTime.class, String.class).select()
.apis(RequestHandlerSelectors.basePackage("com.test")).paths(PathSelectors.any()).build()
.enable(environmentProperties.isEnableSwagger());
}
But the same way is not working with swageger 3 , i still get the same default tile as
OpenAPI definition
v0
OAS3
/v3/api-docs
How can i customise this page title?
Metadata
Metadata
Assignees
Labels
No labels