refactor: rename controller packages to presentation to comply with standard guidelines

This commit is contained in:
jade
2026-07-09 09:46:37 +09:00
parent 5e4f88ea41
commit 4d56e63283
6 changed files with 81 additions and 9 deletions

View File

@@ -27,7 +27,7 @@ import org.springframework.util.StopWatch;
public class GatewayLoggingAspect {
// gateway의 controller 패키지 하위의 모든 클래스/메서드 실행 시 작동
@Around("execution(* io.shinhanlife.axhub.biz.mcp.gateway.controller..*(..))")
@Around("execution(* io.shinhanlife.axhub.biz.mcp.gateway.presentation..*(..))")
public Object logGatewayExecutionTime(ProceedingJoinPoint joinPoint) throws Throwable {
String targetMethod = joinPoint.getSignature().toShortString();
StopWatch stopWatch = new StopWatch();

View File

@@ -1,4 +1,4 @@
package io.shinhanlife.axhub.biz.mcp.gateway.controller;
package io.shinhanlife.axhub.biz.mcp.gateway.presentation;
import io.shinhanlife.axhub.biz.mcp.gateway.service.KillSwitchService;
import lombok.RequiredArgsConstructor;
@@ -8,7 +8,7 @@ import org.springframework.web.bind.annotation.*;
import java.util.Map;
/**
* @package io.shinhanlife.axhub.biz.mcp.gateway.controller
* @package io.shinhanlife.axhub.biz.mcp.gateway.presentation
* @className KillSwitchController
* @description AX HUB 시스템 처리 클래스
* @author 김형식

View File

@@ -1,11 +1,11 @@
package io.shinhanlife.axhub.biz.mcp.gateway.controller;
package io.shinhanlife.axhub.biz.mcp.gateway.presentation;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RestController;
import java.util.Map;
/**
* @package io.shinhanlife.axhub.biz.mcp.gateway.controller
* @package io.shinhanlife.axhub.biz.mcp.gateway.presentation
* @className MciMockController
* @description AX HUB 시스템 처리 클래스
* @author 김형식

View File

@@ -1,4 +1,4 @@
package io.shinhanlife.axhub.biz.mcp.gateway.controller;
package io.shinhanlife.axhub.biz.mcp.gateway.presentation;
import com.fasterxml.jackson.databind.ObjectMapper;
import io.shinhanlife.axhub.biz.mcp.adapter.dto.JsonRpcRequest;
@@ -20,7 +20,7 @@ import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.tags.Tag;
/**
* @package io.shinhanlife.axhub.biz.mcp.gateway.controller
* @package io.shinhanlife.axhub.biz.mcp.gateway.presentation
* @className McpRouterController
* @description AX HUB 시스템 처리 클래스
* @author 김형식