You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
에서 마감일 순은 groupIdx 정렬순서와 관계가 없음.(createAt과 관련)
따라서, 마감일 순 정렬이 groupIdx 16, 10, 11, 12 , 13 순서를 따를때, 16 뒤의 index는 16보다 작기 때문에 데이터를 불러오지 못했음.
원래 저 조건은, 불러왔던 데이터를 또 불러오는 중복을 피하기 위한 코드였음.
이런 이유로 이전페이지의 마지막 index를 포함하지 않게 함으로써 중복 문제를 피하며, 해당 issue를 해결함.
return (groupInfo.recruitmentEndDate.goe(
JPAExpressions.select(groupInfoSub.recruitmentEndDate)
.from(groupInfoSub)
.where(groupInfoSub.groupIdx.eq(groupIdx))))
.and(groupInfo.groupIdx.notIn(groupIdx));
스터디찾기 마감일순 정렬일때 다음 데이터가 있음에도 불구하고 데이터 불러오지않는 이슈 발생
The text was updated successfully, but these errors were encountered: