Last time I upgraded to org.springdoc:springdoc-openapi-webflux-ui:1.4.3
and now I don't see Select a definition
.
Before I was using 1.2.31
version and then it looks like on the screen above.
Is there option to bring back that dropdown?
Last time I upgraded to org.springdoc:springdoc-openapi-webflux-ui:1.4.3
and now I don't see Select a definition
.
Before I was using 1.2.31
version and then it looks like on the screen above.
Is there option to bring back that dropdown?
You need to make sure you have defined your APIs in a group in order to enable the select a defintion drop down list:
Here the code of demo with groups. For example:
@Bean
public GroupedOpenApi storeOpenApi() {
String paths[] = {"/store/**"};
return GroupedOpenApi.builder().group("stores").pathsToMatch(paths)
.build();
}