package com.baeldung.annotations; import org.springframework.http.ResponseEntity; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RestController; @RestController public class HealthCheckController { private static final String STATUS = "UP"; @GetMapping("/health") public ResponseEntity healthCheck() { return ResponseEntity.ok(STATUS); } }