[DP-470] 북마크 공고 목록 매칭순 정렬 추가#166
Merged
github-actions[bot] merged 1 commit intoMay 10, 2026
Merged
Conversation
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



요약
GET /users/me/bookmarks?sort=match파라미터 지원 추가sort=newest(기본값) /sort=oldest동작 유지구현 방식
matchScore는 DB 컬럼이 아닌 인메모리 계산값(JobMatchingCalculator)이므로, DB ORDER BY 불가.→ 전체 북마크를
Pageable.unpaged()로 로드 후 메모리 정렬(matchScore내림차순) → 수동 페이징변경 파일
JobBookmarkController:sort=match분기 처리,sortType서비스 전달JobService:getBookmarkedJobs(sortType)파라미터 추가,getBookmarkedJobsSortedByMatch()추가JobBookmarkControllerTest/JobBookmarkServiceTest: 시그니처 업데이트 + 매칭순 테스트 추가테스트
developV2최신화 및 충돌 없음 확인