Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature: Post Create, Read 기능 구현 #42

Merged
merged 9 commits into from
Nov 2, 2024

Conversation

yooooonshine
Copy link
Member

@yooooonshine yooooonshine commented Nov 2, 2024

issue

구현한 것

  • Post 인기 순, 댓글 단 글, 전체 글, 작성한 글 조회 기능 구현
  • 글 생성 기능 구현

수정한 점

  • 기본 키 생성 전략 전체 수정
  • 시큐리티 url 오류 수정
  • 기타 코드의 에러 수정

아쉬운 점

  • Post 조회 때 Comment 부분에서 join이 엄청 일어난다. 추후 fetch join 적용필요
  • 인기글 조회 성능 최적화 필요
  • 댓글 단 글 조회 최적화 필요

@yooooonshine yooooonshine linked an issue Nov 2, 2024 that may be closed by this pull request
1 task
e.getMessage(),
ErrorCode.INTERNAL_SERVER_ERROR.getCode()));
.status(errorCode.getHttpStatus())
.body(ErrorResponse.of(errorCode, message));
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

에러 메시지에서 Stack trace가 포함되는 걸 다듬어 주셔서 감사합니다!

import java.util.Arrays;

import com.fasterxml.jackson.annotation.JsonCreator;

public enum OriginType {
TEXT("text"),
VOICE("voice");
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

채팅 목록 업로드와 기본 텍스트는 타입이 분리되어야 할 듯 싶습니다.
CHAT 타입을 추가할게요.

Suggested change
VOICE("voice");
TEXT("text")
VOICE("voice"),
CHAT("chat");

import aimo.backend.domains.post.entity.Post;

public class PostMapper {

private final static int PREVIEW_CONTENT_LENGTH = 90;
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

인기글의 UI가 넓어서 다른 글의 PREVIEW와는 다른 값이 설정돼야 할 듯 싶습니다.
인기글은 90개, 다른 글들은 21개로 설정해 놓겠습니다.

}

// PostType으로 글 조회
public Page<FindPostsByPostTypeResponse> findPostDtosByPostType(Member member, PostType postType, Integer page, Integer size) {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

컨트롤러에서 서비스로 넘길 때 Entity를 그대로 넘기는 건 위험해 보입니다.
개별 DTO를 만들어서 전달하도록 수정하겠습니다.

@mng990 mng990 merged commit 5da27b1 into develop Nov 2, 2024
1 check passed
@mng990 mng990 self-assigned this Nov 2, 2024
@mng990 mng990 added the BE label Nov 2, 2024
@yooooonshine yooooonshine deleted the feature/40-implement-posts branch November 12, 2024 11:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Feature: Post 기능 구현
2 participants