th:fragment 반복되는 코드를 재사용 ex) th:fragment="head(title)" fragment 이름이 head(title) th:replace 현재 태그를 fragment 태그로 교체 ex) th:replace="fragments/common :: head('게시판')" fragments폴더의 common파일에서 head('게시판') fragment를 가져와 교체 th:insert 태그 안에 내용 삽입 fragments/common.html에서 fragment 이 fragment는 다른 html의 공통 head로 쓸것이다. 처음에는 이렇게 head에 th:replace를 쓰니까 이 head에 작성한 것들은 다 사라진다. (문제점) th:replace는 말그대로 지정한 fragment로..