
타임리프 단독으로 사용하는 것이 아니라, 스프링이 팍팍 밀어주는 타임리프는 스프링이 지원해주는 기능을 따로 사용할 수가 있다. 특히 스프링부트를 사용하면, 다운로드 받을 때 타임리프만 추가하면 매뉴얼 설정 필요없이 사용할 수 있다.※ 매뉴얼 : https://www.thymeleaf.org/doc/tutorials/3.0/thymeleafspring.html form> 자바로직에서 빈 객체를 보내준다.form action="item.html" th:action th:object="${item}" method="post">th:objec로 해당 빈 객체를 가져온다.input type="text" th:field="*{itemName}" th:field에서 해당 객체의 필드들을 가져올 수 있다.※ 이를..