[Spring Boot] 헬스 체크(Health Check) 구현
01_Health Check📍 Health Check현재 서버가 살아있는지 확인→ 사람이 직접 확인 어렵→ 자동화된 외부 시스템이 주기적으로 서버 상태를 확인할 수 있는 엔드포인트 사용 02_Health Check API 구현📍 직접 엔드포인트 생성package com.example.global.api;import org.springframework.web.bind.annotation.GetMapping;import org.springframework.web.bind.annotation.RestController;@RestControllerpublic class HealthCheckController { @GetMapping("/health-check") public String he..