From 0544c36f1ccb494b86e21e148f6a84b66cfae8a0 Mon Sep 17 00:00:00 2001 From: dong2ast Date: Wed, 10 Jan 2024 11:37:26 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=A6=EF=B8=8F=20[CHORE]=20=EC=8A=A4?= =?UTF-8?q?=EC=9B=A8=EA=B1=B0=20https=20=EC=84=A4=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/org/sopt/lequuServer/LequuServerApplication.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/java/org/sopt/lequuServer/LequuServerApplication.java b/src/main/java/org/sopt/lequuServer/LequuServerApplication.java index c709577..76beec9 100644 --- a/src/main/java/org/sopt/lequuServer/LequuServerApplication.java +++ b/src/main/java/org/sopt/lequuServer/LequuServerApplication.java @@ -1,11 +1,14 @@ package org.sopt.lequuServer; +import io.swagger.v3.oas.annotations.OpenAPIDefinition; +import io.swagger.v3.oas.annotations.servers.Server; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.autoconfigure.security.servlet.UserDetailsServiceAutoConfiguration; import org.springframework.cloud.openfeign.EnableFeignClients; @SpringBootApplication(exclude = { UserDetailsServiceAutoConfiguration.class }) +@OpenAPIDefinition(servers = {@Server(url ="https://www.lecue.p-e.kr", description = "Default Server URL")}) @EnableFeignClients public class LequuServerApplication {