Questions tagged [springfox-boot-starter]

A Spring Boot starter that adds a /swagger-ui/ endpoint containing API documentation.

33 questions
0
votes
1 answer

OpenApi: Unable to override content type using OperationBuilderPlugin

I'm wasting a lot of time trying to figure out how to set a default MediaType for my Spring Controllers in the output of the api-docs generated by SpringFox (Docket openapi v3.0). Lastly I've found an almost undocumented interface…
G-Host
  • 356
  • 2
  • 11
0
votes
0 answers

SpringBoot - SpringFox Starter 3.0.0 - Unable to detect WebFlux RouterFunction

I am using SpringBoot WebFlux Springfox-starter for the project. The issue is this not detecting the RouterFunction methods. The above methods are detecting without any issues but it is not working for RouterFunctions. @Bean public…
0
votes
1 answer

How to config global header with default value in springfox 3.0.0

I need to add a global header with default value, and the header parameter should to hidden. Is there anyone can give my some advice? This is my code. @Bean public Docket createRestApi() { // @formatter:off return new…
1 2
3