Refactor: Rename Application classes to Dap*Application prefix
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user