Open
Conversation
채용공고 조회 캐싱 적용 & jobPostingStepId unique 제약 조건 설정
채용 공고 단계를 올릴 때 appliedJobPosting stepName update, test code 수정
merge develop branch to main branch
merge develop branch to main branch
- main 브랜치에 README.md 파일만 변경되어 푸시되는 경우에는 자동 배포 워크플로우가 실행 안됨
- 기존의 로직으로는 DB에 저장될 때, Enum 값이 아닌 Enum의 인덱스 값(e.g. 0, 1, ...)이 저장됨 - 숫자가 아닌 Enum값으로 저장하기 위해 @Enumerated(EnumType.STRING) 추가
- 검색 기능 테스트용 api 추가
…stingsByKeyword()
…bPostingsByKeyword() - 필터 기능에 연봉도 파라미터로 추가 - 키워드 검색 기능 작성
…bPostingsByKeyword()
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.
변경사항
AS-IS
TO-BE
build.gradle : QueryDSL 설정 추가
JobPostingEntity
저장하기 위해 @Enumerated(EnumType.STRING) 추가
QuerDSL를 사용한 필터 구현
QueryDSL를 사용한 키워드 검색 구현
QuerydslConfig : JPAQueryFactory 설정
SearchController : "/job-postings/search"와 "/job-postings/filter"를 GetMapping함
SearchService
SecurityConfig : "/job-postings/search"와 "/job-postings/filter"에 권한 없이 접근 가능하도록 설정 추가
테스트