-
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
[#68]Argument Resolver 리팩토링/Jacoco Report 설정/테스트커버리지80%달정 #69
Merged
Conversation
This file contains 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
- request 파라미터에서 Session을 직접 가져오는 방법으로 변경 Related: #64
- PR 생성 시 빌드된 레포트를 PR에 가시적으로 보여줌. Related: #64
- 블로그 글 추가 Related: #64
Related: #64
Related: #64
Related: #64
Jacoco Report to PR 시 Instruction 기준으로 체크되므로 변경 Related: #64
- 비지니스로직이 아닌 클래스 테스트커버리지 체크에서 제외한다. Related: #64
- 비지니스로직이 아닌 클래스 테스트커버리지 체크에서 제외한다. Related: #68
Related: #68
Related: #68
Related: #68
Related: #68
- 실패할 경우 복구에 대한 처리 필요. Related: #68
Related: #68
Related: #68
Related: #68
- 문제: QueryDsl은 객체그래프가 4개이상 넘어가면 NPE가 발생한다. hostId 비교시, `reservation.facility.space.host.id`로 접근하여 host에 NPE가 발생함 - 해결: inner join - 출처 : https://www.sunny-son.space/spring/QueryDsl%EC%9D%98%20NPE%20%ED%95%B4%EA%B2%B0%ED%95%98%EA%B8%B0%20+%20Cross%20Join/ Related: #68
- report는 exclude class 지정이 불가능하기 때문에, 해당 부분을 감안하여 커버리지 비율 조정 Related: #68
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.
개요
작업사항
[*.*Application', '*.*Controller', '*.dto.*', '*.config.*', '*.common.*', '*.domain.Q*', '*.*Builder']
변경로직
이슈사항
reservation.facility.space.host.id
로 접근하였으나 host에 NPE가 발생함.출처 : https://www.sunny-son.space/spring/QueryDsl%EC%9D%98%20NPE%20%ED%95%B4%EA%B2%B0%ED%95%98%EA%B8%B0%20+%20Cross%20Join/