swagger 포트 주소 수정

This commit is contained in:
cyjadela 2025-10-24 14:49:26 +09:00
parent a9da2e54ca
commit 906c9c507e
3 changed files with 3 additions and 3 deletions

View File

@ -22,7 +22,7 @@ public class SwaggerConfig {
return new OpenAPI() return new OpenAPI()
.info(apiInfo()) .info(apiInfo())
.addServersItem(new Server() .addServersItem(new Server()
.url("http://localhost:8081") .url("http://localhost:8082")
.description("Local Development")) .description("Local Development"))
.addServersItem(new Server() .addServersItem(new Server()
.url("{protocol}://{host}:{port}") .url("{protocol}://{host}:{port}")

View File

@ -51,7 +51,7 @@ public class SwaggerConfig {
.url("https://www.apache.org/licenses/LICENSE-2.0.html"))) .url("https://www.apache.org/licenses/LICENSE-2.0.html")))
.servers(List.of( .servers(List.of(
new Server() new Server()
.url("http://localhost:8080") .url("http://localhost:8085")
.description("Local Development Server"), .description("Local Development Server"),
new Server() new Server()
.url("https://api.hgzero.com") .url("https://api.hgzero.com")

View File

@ -22,7 +22,7 @@ public class SwaggerConfig {
return new OpenAPI() return new OpenAPI()
.info(apiInfo()) .info(apiInfo())
.addServersItem(new Server() .addServersItem(new Server()
.url("http://localhost:8080") .url("http://localhost:8081")
.description("Local Development")) .description("Local Development"))
.addServersItem(new Server() .addServersItem(new Server()
.url("{protocol}://{host}:{port}") .url("{protocol}://{host}:{port}")