I have a spring boot application for which I am trying to generate open API 3.0 docs and for that I am using springdoc lib. I am using annotations to document different parts of the application and in the end I want to auto generate the documentation. I am using annotations for all documentations and finding it a little difficult to replicate similar things listed in yaml/json from the official documentation of springdocs. I have multiple instances of the app and will be uploading the documentation for all of them to a single open API UI. For the multiple hosts, I have defined them something like below:
@OpenAPIDefinition(
info = @Info(
title = "Title",
version = "v1",
description = "Desc",
),
servers = {
@Server(
url = "https://server-1.com",
description = "Server 1"
),
@Server(
url = "https://server-2.com",
description = "Server 2"
),
@Server(
url = "https://server-3.com",
description = "Server 3"
)
}
)
@SecurityScheme(name = "security_auth", type = SecuritySchemeType.OAUTH2,
flows = @OAuthFlows(authorizationCode =
@OAuthFlow(tokenUrl = "v1/authenticate")))
public class OpenAPIConfig {}
Now the issue for me is that the toeken URL shows up like defined above whole I want to define the absolute URL, something that will be updated as per user selection. For eg - https://server-3.com/v1/authenticate. How can I do that within annotations ?
You should declare 3 different SecurityScheme for your sample. Note that all the server urls/paths could be fetch fron a configuration file as well.
Here a sample code how you can achieve your goal: