Java/Spring

[View 환경설정] view 기본 동작환경

코딩공부 2021. 3. 24. 01:50

HelloController.java

@Controller
public class HelloController {
   @GetMapping("hello")
   public String hello(Model model) {
       model.addAttribute("data", "hello!!");
       return "hello";
   }
}

 

resources/templates/hello.html

<!DOCTYPE HTML>
<html xmlns:th="http://www.thymeleaf.org">
<head>
 <title>Hello</title>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
<p th:text="'안녕하세요. ' + ${data}" >안녕하세요. 손님</p>
</body>
</html>​

localhost:8080/hello

 

  • 컨트롤러에서 리턴 값으로 문자를 반환하면 뷰 리졸버( viewResolver )가 화면을 찾아서 처리한다.
  • 스프링 부트 템플릿엔진 기본 viewName 매핑
  • resources:templates/ +{ViewName}+ .html