diff --git a/demo/build.gradle b/demo/build.gradle index 7ac9ee1..d587f6f 100644 --- a/demo/build.gradle +++ b/demo/build.gradle @@ -28,7 +28,6 @@ dependencies { implementation 'org.springframework.boot:spring-boot-starter-web' implementation 'org.springframework.boot:spring-boot-starter-webflux' implementation 'org.springframework.boot:spring-boot-starter-validation' - implementation 'org.springframework.cloud:spring-cloud-starter' implementation 'org.springframework.boot:spring-boot-starter-actuator' // KMS diff --git a/demo1/src/main/java/com/example/demo/home1/Home1Controller.java b/demo1/src/main/java/com/example/demo/home1/Home1Controller.java index 3175489..61c13fb 100644 --- a/demo1/src/main/java/com/example/demo/home1/Home1Controller.java +++ b/demo1/src/main/java/com/example/demo/home1/Home1Controller.java @@ -9,7 +9,6 @@ public class Home1Controller { @GetMapping public String home1(){ - System.out.println("home1_12"); return "home1"; } }