remove api path

This commit is contained in:
박세원
2025-10-30 18:42:49 +09:00
parent c6dfc74bda
commit f13bfe6a6e
4 changed files with 7 additions and 7 deletions
@@ -32,7 +32,7 @@ public class HealthController {
* 서비스 헬스체크
*/
@Operation(summary = "서비스 헬스체크", description = "AI Service 상태 및 외부 연동 확인")
@GetMapping("/api/v1/ai-service/health")
@GetMapping("/health")
public ResponseEntity<HealthCheckResponse> healthCheck() {
// Redis 상태 확인
ServiceStatus redisStatus = checkRedis();
@@ -39,7 +39,7 @@ spring:
server:
port: ${SERVER_PORT:8083}
servlet:
context-path: /api/v1/ai-service
context-path: /api/v1/ai
encoding:
charset: UTF-8
enabled: true