πŸ”™λ’€λ‘œκ°€κΈ°

κΈ°λŠ₯

HTTP POST μš”μ²­μ„ μ²˜λ¦¬ν•  λ©”μ†Œλ“œμ— 이 μ–΄λ…Έν…Œμ΄μ…˜μ„ μ‚¬μš©ν•  수 μžˆλ‹€.

@Controller
public class MyController {

    @PostMapping("/hello")
    public String helloPost(Model model) {
        model.addAttribute("message", "Hello from POST method");
        return "hello";
    }
}