Welcome Page 만들기


resources/static/index.html


<!DOCTYPE HTML>
<html>
	<head>
		<title>Hello</title>
		<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
	</head>
	<body>
		Hello
		<a href="/hello">hello</a>
	</body>
</html>


thymeleaf 템플릿 엔진





@Controller
public class HelloController {

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

resources/templates/hello.html