We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Is your feature request related to a problem? Please describe.
I would like to change the server URL For that I found the ServerBaseUrlCustomizer mentiones here This does not change the description though.
ServerBaseUrlCustomizer
{ "servers": [ { "url": "https://my-property.test", "description": "Generated server url" } ] }
Describe the solution you'd like
I would like to have a application.yml property to be able to change the url including the description:
springdoc: api-docs: enabled: true swagger-ui: enabled: false servers: <-- server1: url: https://my-property.test description: "my description"
The text was updated successfully, but these errors were encountered:
@huehnerlady,
It will be possible starting from the next release with the below syntax:
springdoc: open-api: servers: - url: "https://api.example.com" description: "Production Server" - url: "https://staging.example.com" description: "Staging Server"
Sorry, something went wrong.
1637f26
No branches or pull requests
Is your feature request related to a problem? Please describe.
I would like to change the server URL
For that I found the
ServerBaseUrlCustomizer
mentiones hereThis does not change the description though.
Describe the solution you'd like
I would like to have a application.yml property to be able to change the url including the description:
The text was updated successfully, but these errors were encountered: