Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

springdoc-openapi-ui How do I set the request to HTTPS

When I publish, I will use HTTPS requests instead of HTTP, but swagger original URL is still HTTP, I have no idea how to set it up, and there is no documentation for servers in the original springdoc-openapi-ui configuration

https://springdoc.org/index.html#properties enter image description here

like image 968
Tablo_Jhin Avatar asked Sep 02 '25 11:09

Tablo_Jhin


1 Answers

you can try this :

...
import io.swagger.v3.oas.annotations.OpenAPIDefinition;
import io.swagger.v3.oas.annotations.servers.Server;
...
@OpenAPIDefinition(servers = {@Server(url = "/", description = "Default Server URL")})

@SpringBootApplication
public class MyApplication {
...
}

more info here https://github.com/springdoc/springdoc-openapi/issues/726

like image 53
David Avatar answered Sep 13 '25 05:09

David