Open
Conversation
채용공고 조회 캐싱 적용 & jobPostingStepId unique 제약 조건 설정
채용 공고 단계를 올릴 때 appliedJobPosting stepName update, test code 수정
merge develop branch to main branch
merge develop branch to main branch
- main 브랜치에 README.md 파일만 변경되어 푸시되는 경우에는 자동 배포 워크플로우가 실행 안됨
- implementation 'org.springframework.boot:spring-boot-starter-oauth2-client'
Goldbar97
reviewed
Aug 13, 2024
Comment on lines
+40
to
+45
| Map<String, Object> immutableMap = Map.of( | ||
| "key", key, | ||
| "name", name != null ? name.toString() : null, | ||
| "email", email != null ? email.toString() : null, | ||
| "mobile", mobile != null ? mobile.toString() : null | ||
| ); |
Collaborator
There was a problem hiding this comment.
Value 값을 String 으로 넣어주더라도 나중에 사용할 때 다시 Object 로 될텐데 null 확인을 하는 이유가 따로 있으신가요?
Collaborator
Author
There was a problem hiding this comment.
사실 NullPointerException이 떠서 그 부분을 해결하려고 하다보니 null 체크가 여기저기 남아있습니다. 필요 없는 부분들은 후에 삭제하겠습니다!
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
테스트