I am using springdoc UI to generate the documentation of my Java API. The generation itself seems to be going well, except I am unable to disable the Try it out button.
I have tried both:
- springdoc.swagger-ui.tryItOutEnabled=false
- springdoc.swagger-ui.supportedSubmitMethods=get
Neither of them seem to have any influence. I have also tried defining my own Swagger UI bean to directly set the properties I mentioned earlier, but that also did not seem to have an effect.
I am using spring-boot 3.3.2 and springdoc-openapi-starter-webmvc-ui 2.6.0.
I have been trying to figure out what I might be doing wrong but did not get any closer to figuring out how I could solve this.