먼저 DTO를 생성한다. BookForm package com.kyhslam.controller; import lombok.Getter; import lombok.Setter; @Setter @Getter public class BookForm { private Long id; private String name; private int price; private int stockQuantity; private String author; private String isbn; } ItemController package com.kyhslam.controller; import com.kyhslam.domain.item.Book; import com.kyhslam.domain.item.Item; import c..
스프링 부트가 자동설정을 지원하는 템플릿 엔진 FreeMarker Groovy Thymeleaf Mustache Jsp 권장하지 않는 이유 Jar 패키징 할때는 동작하지 않고, war로 패미징을 해야한다. Undertow는 JSP를 지원하지 않는다. (JBOSS에서 지원하는 서블릿 엔진이다) jsp는 서블릿엔진이 템플릿을 완성시킨다. 학습 및 참고 URL https://www.thymeleaf.org/ https://www.thymeleaf.org/doc/articles/standarddialect5minutes.html Getting started with the Standard dialects in 5 minutes - Thymeleaf Getting started with the Standard d..