resources/static/index.html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>hello</title>
</head>
<body>
Hello
<a href="/hello">Hello</a>
</body>
</html>
스프링 부트가 제공하는 Welcome Page 기능
thymmeleaf 템플릿 엔진
- thymeleaf 공식사이트 : https://www.thymeleaf.org/
controller 패키지 생성후 HelloController 파일 생성
package com.hello.hellospring.controller;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping;
@Controller
public class HelloController {
@GetMapping("/hello")
public String hello(Model model) {
model.addAttribute("data", " 반갑습니다.");
return "hello";
}
}
resources/templates/index.html
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>타임리프 이용해서 출력</title>
</head>
<body>
<p th:text=" '안녕하세요 ' + ${data}"> 안녕하세요.</p>
</body>
</html>
컨트롤러에서 리턴 값으로 문자를 반환하면 뷰 리졸버(viewResolver)가 화면을 찾아서 처리한다.
- 스프링부트 템플릿 엔진 기본 viewName 매핑
{ViewName}
+.html