HTTP GET μμ²μ μ²λ¦¬ν λ©μλμ μ΄ μ΄λ Έν μ΄μ μ μ¬μ©ν μ μλ€.
@Controller
public class MyController {
@GetMapping("/hello")
public String helloGet(Model model) {
model.addAttribute("message", "Hello from GET method");
return "hello";
}
}