Skip to content

Commit

Permalink
hotfix (#362)
Browse files Browse the repository at this point in the history
* refactor: Player의 Member 필드 지연로딩으로 변경

* refactor: PlayerRepository.findAll() Fetch Join 진행

* test: 지연 로딩으로 인한 테스트 에러 임시 수정

* refactor: 배치 사이즈 설정

* refactor: 배치 사이즈 설정
  • Loading branch information
dooboocookie authored Sep 21, 2023
1 parent 965783e commit 453fa7b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public class Player extends BaseEntity {
private Score totalScore;

@JoinColumn(name = "member_id")
@OneToOne(fetch = FetchType.LAZY)
@OneToOne//(fetch = FetchType.LAZY)
private Member member;

private boolean deleted = FALSE;
Expand Down

0 comments on commit 453fa7b

Please sign in to comment.