인기글 홈 화면에 LIST-UP 해보았다. PostRepository @Repository @Transactional public class PostQueryPostRepository { private final EntityManager em; private final JPAQueryFactory query; public PostQueryPostRepository(EntityManager em) { this.em = em; this.query = new JPAQueryFactory(em); } public List hotPost() { List hotPosts = query .select(post) .from(post) .orderBy(post.heartCount.desc()) .offset(0) .li..