-
Notifications
You must be signed in to change notification settings - Fork 0
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
[FEAT] 무한스크롤의 중복 컨텐츠 문제 해결 #192
[FEAT] 무한스크롤의 중복 컨텐츠 문제 해결 #192
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 방식이 창의적이에요!!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
굿굿굿 ~ 조회시각기준
을 프론트가 잘 활용할 수 있도록 설명이 필요하겠네요 ,, !!!
src/main/java/com/server/capple/domain/boardComment/repository/BoardCommentRepository.java
Show resolved
Hide resolved
지금 방식의 문제가 있어서 수정이 필요할거 같아요.
index기반의 컨텐츠 고정 구현에서의 문제
마지막 인덱스( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 👍
9670d81
Signed-off-by: 이재원 <ghfkddl706@me.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 👍🏻
PR 타입(하나 이상의 PR 타입을 선택해주세요)
반영 브랜치
feat/#190/infiniteScrollDuplicateContent -> develop
변경 사항
threshold
(조회 기준)를 파라미터로 받는 방식으로 구현했습니다.threshold
를 비필수 파라미터로 지정하여 하위호환도 가능하도록 구현하였습니다.liveAt
기준으로 컨텐츠를 제한하기 위해LocalDateTime
타입을, 그 외의 API에서는id
기준으로 컨텐츠를 제한하기 위해Long
타입으로threshold
타입을 지정하여 케이스에 따라 다른 기준값을 사용하도록 했습니다.threshold
는 Query Parameter 형식으로 받기 때문에 어떤 데이터타입을 사용하든 파싱이 잘되고 있음을 확인했습니다.아래와 같이 데이터를 주고 받도록 프론트에 요구할 예정입니다.
테스트 결과
답변
게시판 댓글
질문
개선 요망 사항