[thymeleaf] 타임리프 정리중..
1. fragment (include) 메뉴 또는 상단, 푸터 등 공통으로 사용되는 파일을 삽입시 사용 선언 : th:fragement="fragment명" 사용(호출) : th:replace="경로/파일명 :: fragment명" 메뉴1 | 메뉴2 | 메뉴3 파라미터 사용 예시 2. link (링크) 선언 : th:href="@{링크경로/파일명}" 3. 리스트 Size 출력 ${#lists.size()} ${#lists.isEmpty()} [JAVA] ArrayList colors = new ArrayList(Arrays.asList("Black", "White", "Green", "Red")); [Thymeleaf] Size 출력 empty 여부 4. object (객체 속성 접근) 부모 태그의 th..
프로그래밍/thymeleaf
2021. 5. 7. 14:29