Spring 전환 최소 실행 골격 재검증 (role-developer-reverify-001)

This commit is contained in:
forge-bot 2026-07-14 05:27:30 +00:00
parent 2adb2af023
commit 3d9fe0e272

View file

@ -0,0 +1,16 @@
package com.example.controller;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
import java.util.Map;
@RestController
public class HealthController {
@GetMapping("/health")
public ResponseEntity<Map<String, String>> health() {
return ResponseEntity.ok(Map.of("status", "UP"));
}
}