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 ํ
ํ๋ฆฟ ์์ง ์ด๋ฏธ์ง