From 32f5f19b1fb21fb608981d8acf305a0683a30688 Mon Sep 17 00:00:00 2001 From: jade Date: Wed, 8 Jul 2026 11:00:56 +0900 Subject: [PATCH] =?UTF-8?q?=EC=83=98=ED=94=8C=20=EC=86=8C=EC=8A=A4=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...grationCall.java.template => GlowIntegrationCall.java} | 0 ...leGlowMessage.java.template => SampleGlowMessage.java} | 0 .../axhub/sample/presentation/GlowSampleController.java | 8 +++----- 3 files changed, 3 insertions(+), 5 deletions(-) rename axhub-common/src/main/java/io/shinhanlife/axhub/common/integration/{GlowIntegrationCall.java.template => GlowIntegrationCall.java} (100%) rename axhub-common/src/main/java/io/shinhanlife/axhub/common/integration/dto/{SampleGlowMessage.java.template => SampleGlowMessage.java} (100%) diff --git a/axhub-common/src/main/java/io/shinhanlife/axhub/common/integration/GlowIntegrationCall.java.template b/axhub-common/src/main/java/io/shinhanlife/axhub/common/integration/GlowIntegrationCall.java similarity index 100% rename from axhub-common/src/main/java/io/shinhanlife/axhub/common/integration/GlowIntegrationCall.java.template rename to axhub-common/src/main/java/io/shinhanlife/axhub/common/integration/GlowIntegrationCall.java diff --git a/axhub-common/src/main/java/io/shinhanlife/axhub/common/integration/dto/SampleGlowMessage.java.template b/axhub-common/src/main/java/io/shinhanlife/axhub/common/integration/dto/SampleGlowMessage.java similarity index 100% rename from axhub-common/src/main/java/io/shinhanlife/axhub/common/integration/dto/SampleGlowMessage.java.template rename to axhub-common/src/main/java/io/shinhanlife/axhub/common/integration/dto/SampleGlowMessage.java diff --git a/axhub-gateway/src/main/java/io/shinhanlife/axhub/sample/presentation/GlowSampleController.java b/axhub-gateway/src/main/java/io/shinhanlife/axhub/sample/presentation/GlowSampleController.java index c1f6f92..343b58c 100644 --- a/axhub-gateway/src/main/java/io/shinhanlife/axhub/sample/presentation/GlowSampleController.java +++ b/axhub-gateway/src/main/java/io/shinhanlife/axhub/sample/presentation/GlowSampleController.java @@ -1,16 +1,12 @@ package io.shinhanlife.axhub.sample.presentation; -import io.shinhanlife.glow.BaseResponse; -import io.shinhanlife.glow.GlowControllerId; -import io.shinhanlife.glow.GlowLogTarget; -import io.shinhanlife.glow.GlowLogger; -import io.shinhanlife.glow.ResponseUtil; import io.shinhanlife.axhub.sample.presentation.io.AppliSystNtfyPatiRequest; import io.shinhanlife.axhub.sample.presentation.io.AppliSystNtfyPatiResponse; import io.shinhanlife.axhub.sample.presentation.io.StrnTermRequest; import io.shinhanlife.axhub.sample.presentation.io.StrnTermResponse; import io.shinhanlife.axhub.sample.usecase.GlowSampleUseCase; +import io.shinhanlife.glow.*; import lombok.RequiredArgsConstructor; import org.springframework.http.ResponseEntity; import org.springframework.web.bind.annotation.PostMapping; @@ -19,6 +15,7 @@ import org.springframework.web.bind.annotation.RestController; @RestController @RequiredArgsConstructor + public class GlowSampleController { @GlowLogTarget({GlowLogTarget.Target.CONSOLE, GlowLogTarget.Target.FILE}) private final GlowLogger log; @@ -30,6 +27,7 @@ public class GlowSampleController { return ResponseUtil.ok(glowSampleUseCase.getStrnTerms(request)); } + @GlowControllerId(value = "insertAp") @PostMapping("/insertAppliSystNtfyPati") public ResponseEntity> insertAppliSystNtfyPati(@RequestBody AppliSystNtfyPatiRequest request) {