thymeleaf 출력
-
[Thymeleaf] 데이터 출력백엔드/ThymeLeaf 2024. 10. 16. 23:23
Model Attribute 출력 th:text 출력: 컨텐츠 직접 출력 = [[${data}]] 속성에서 출력${data} 이용하여 Model.attribute("data", [data값]) 출력 컨텐츠 내부 직접 출력"[[]]" 을 이용하여 직접 출력 가능 객체 출력** 사전 준비 **public class User{ private String username; public String getUsername(){ return this.username; }}List list = new ArrayList();Map map = new HashMap();list.add(userA);map.put('userA', userA);model.addA..