책 상세 화면에서 책 기록 기능 추가하기에서 책 로그가 기록될 영역을 이미 정의했었습니다.
src/main/resources > templates.book > read.html
<div id="book_log">
</div>
이부분을 다음과 같이 바꿉니다.
<div id="book_log">
<p th:each="bookLog : ${bookReadResponseDTO.bookLogs}" th:text="${bookLog.displayComment}">
</p>
</div>
다시 서버를 실행하고 http://localhost:8080/book/read/5 에 접속해 보세요.
댓글이 잘 나오는지 확인합니다.