[인스타그램 클론코딩] 08. 홈 화면 구현(Back-End)
·
Web/인스타 클론 코딩
홈화면에는 유저들이 올린 게시글을 보여줄 예정이다. 또한 게시글에 대한 좋아요 기능과 댓글 기능까지 구현할 예정이다. 제일 먼저, 홈화면으로 들어왔을 때 보여줄 게시글 목록을 반환해주는 api를 제작한다. 1. DTO 작성 @Data public class PostDto { private Long postId; private UserDto user; private String content; private List postFileList; @Builder public PostDto(Long postId, UserDto user, String content, List postFileList) { this.postId = postId; this.user = user; this.content = content..