Home
>
Spring
>
π[Spring] MVCμ ν
νλ¦Ώ μμ§.
Spring
Framework
π[Spring] MVCμ ν
νλ¦Ώ μμ§.
@Controller
public class HelloController {
@GetMapping("hello-mvc")
public String helloMvc(@RequestParam("name") String name, Model model) {
model.addAttribute("name", name);
return "hello-template";
}
}
<html xmlns:th="htt[://www.thymeleaf.org">
<body>
<p th:text="'hello ' + ${name}">hello! empty</p>
</body>
</html>
-
μ€ν
- http://localhost:8080/hello-mvc?name=spring
- MVC ν
νλ¦Ώ μμ§ μ΄λ―Έμ§