- MVC: Model, View, Controller
package hello.hellospring.controller;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;
@Controller
public class HelloController {
@GetMapping("hello")
public String hello(Model model) {
model.addAttribute("data", "spring!!");
return "hello";
}
@GetMapping("hello-mvc")
public String helloMvc(@RequestParam("name") String name, Model model) {
model.addAttribute("name", name);
return "hello-template";
}
}
(HelloController.java)
<html xmlns:th="http://www.thymeleaf.org">
<body>
<p th:text="'hello ' + ${name}">hello! empty</p>
</body>
</html>
(resources/templates/hello-template.html)
- p 태그 안의 문자열은 서버 구동 없이 직접 파일만 실행할 때 표시되는 문자열입니다.
(접속 화면)
MVC, 템플릿 엔진 이미지
참조
'Spring' 카테고리의 다른 글
[스프링 입문] 비즈니스 요구사항 정리 (0) | 2021.08.29 |
---|---|
[스프링 입문] API (0) | 2021.08.29 |
[스프링 입문] 정적 컨텐츠 (0) | 2021.08.28 |
[스프링 입문] 빌드하고 실행하기 (0) | 2021.08.28 |
[스프링 입문] View 환경설정 (0) | 2021.08.28 |
댓글