728x90
Welcome Page 만들기
resources/static/index.html 이걸 넣어주면 얘를 Welcome Page로 해준다. (도메인만 치고 왔을 때 첫 페이지)
<!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 템플릿 엔진 사용
공식사이트 : Thymeleaf
스피링 공식 튜토리얼 : Getting Started | Serving Web Content with Spring MVC
스프링 부트 메뉴얼 : Spring Boot Features
'Back-End > Spring' 카테고리의 다른 글
[Spring] 1. Spring 프로젝트 생성 (0) | 2022.06.26 |
---|