Spring 전환 최소 실행 골격 재검증 #4

Open
forge-bot wants to merge 6 commits from forge/role-developer-reverify-001-attempt-2-run-2442ff580a26 into main
Showing only changes of commit 3d9fe0e272 - Show all commits

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"));
}
}