From dc321a7cc19acea98f1a8a6052b49f1b828b7ae9 Mon Sep 17 00:00:00 2001 From: woody35545 Date: Thu, 14 Mar 2024 20:09:25 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20#1=20cicd=20=ED=85=8C=EC=8A=A4?= =?UTF-8?q?=ED=8A=B8=EC=9A=A9=20=ED=81=B4=EB=9E=98=EC=8A=A4=20=EB=B0=8F=20?= =?UTF-8?q?=EC=9D=98=EC=A1=B4=EC=84=B1=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pom.xml | 19 +++++++------------ .../com/t3t/apigateway/TestController.java | 12 ------------ 2 files changed, 7 insertions(+), 24 deletions(-) delete mode 100644 src/main/java/com/t3t/apigateway/TestController.java diff --git a/pom.xml b/pom.xml index b815bf4..38a6ad4 100644 --- a/pom.xml +++ b/pom.xml @@ -31,25 +31,20 @@ - org.springframework.boot spring-boot-starter-thymeleaf - - - - - - - - - org.springframework.boot - spring-boot-starter-actuator + org.springframework.cloud + spring-cloud-starter-gateway + + + org.springframework.cloud + spring-cloud-starter-netflix-eureka-client org.springframework.boot - spring-boot-starter-web + spring-boot-starter-actuator org.springframework.boot diff --git a/src/main/java/com/t3t/apigateway/TestController.java b/src/main/java/com/t3t/apigateway/TestController.java deleted file mode 100644 index ac67721..0000000 --- a/src/main/java/com/t3t/apigateway/TestController.java +++ /dev/null @@ -1,12 +0,0 @@ -package com.t3t.apigateway; - -import org.springframework.web.bind.annotation.GetMapping; -import org.springframework.web.bind.annotation.RestController; - -@RestController -public class TestController { - @GetMapping("/") - public String test() { - return "v0.0.3"; - } -}