새로운 프로젝트를 만들기 위해 start.spring.io에서 gradle project에

Spring Web, Thymeleaf, Lombok을 추가하고 생성하였다.

 

기본 설정을 마치고 Whitelabel Error Page를 확인하였다.

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<ul>
    <li>상품 관리
        <ul>
            <li><a href="/basic/items">상품 관리 - 기본</a></li>
        </ul>
    </li>
</ul>
</body>
</html>

기본 페이지도 생성하였다. (index.html) 

 

+ Recent posts