Problem While conducting an online study project, I came across the N+1 issue, so I decided to test it. Firstly, our current database diagram is as follows. And the repository to test the N+1 issue is StudyRoom. To perform this test, I wrote the following code. @ActiveProfiles("test") @ExtendWith(SpringExtension.class) @DataJpaTest public class StudyRoomRepositoryTest { @Autowired private StudyR..