We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4ebb7a commit 8bdfe2aCopy full SHA for 8bdfe2a
src/main/java/kr/dgucaps/caps/CapsApplication.java
@@ -1,9 +1,16 @@
1
package kr.dgucaps.caps;
2
3
+import io.swagger.v3.oas.annotations.OpenAPIDefinition;
4
+import io.swagger.v3.oas.annotations.servers.Server;
5
import org.springframework.boot.SpringApplication;
6
import org.springframework.boot.autoconfigure.SpringBootApplication;
7
import org.springframework.data.jpa.repository.config.EnableJpaAuditing;
8
9
+@OpenAPIDefinition(
10
+ servers = {
11
+ @Server(url = "https://api.dgucaps.shop", description = "테스트 서버"),
12
+ }
13
+)
14
@EnableJpaAuditing
15
@SpringBootApplication
16
public class CapsApplication {
0 commit comments