Refactor: Rename Application classes to Dap*Application prefix

This commit is contained in:
jade
2026-07-16 20:07:52 +09:00
parent 9b0ed9dd51
commit 5a0e6951e2
6 changed files with 15 additions and 15 deletions

View File

@@ -8,8 +8,8 @@ import org.springframework.cache.annotation.EnableCaching;
@SpringBootApplication(scanBasePackages = {"io.shinhanlife.dap.biz.mcp.gateway", "io.shinhanlife.dap.common.mcp", "io.shinhanlife.dap.common.config"})
@ConfigurationPropertiesScan(basePackages = {"io.shinhanlife.dap.biz.mcp.gateway", "io.shinhanlife.dap.common.mcp", "io.shinhanlife.dap.common.config"})
@EnableCaching
public class AxHubGatewayApplication {
public class DapGatewayApplication {
public static void main(String[] args) {
SpringApplication.run(AxHubGatewayApplication.class, args);
SpringApplication.run(DapGatewayApplication.class, args);
}
}
}

View File

@@ -9,7 +9,7 @@ import io.shinhanlife.dap.biz.mcp.gateway.redis.RedisToolTraceService;
@SpringBootTest
@ActiveProfiles("test")
class AxHubGatewayApplicationTests {
class DapGatewayApplicationTests {
// Mock components that might require external dependencies (like Redis/DB) to pass the context load
@MockitoBean