> Java > java지도 시간 > 본문

JPA 및 Hibernate에서 N 1 문제를 해결하는 방법은 무엇입니까?

Mary-Kate Olsen
풀어 주다: 2024-11-14 18:54:02
원래의
660명이 탐색했습니다.

How to Solve the N+1 Problem in JPA and Hibernate?

Tackling the N+1 Problem in JPA and Hibernate

The N+1 issue arises when excessive queries are executed to retrieve relational data. For instance, in Hibernate, an initial query fetches N records, and N additional queries are needed to retrieve associated records for each.

To resolve this problem, utilize JOIN FETCH:

List<PostComment> comments = entityManager.createQuery(
    "select pc from PostComment pc join fetch pc.post p where pc.review = :review"
)
.setParameter("review", review)
.getResultList();
로그인 후 복사

This JOIN FETCH eager-fetches the post association, eliminating the N+1 queries.

If multiple child associations need fetching, fetch one collection in the initial query and the others with subsequent queries.

Automatic Detection

Integration testing is ideal for detecting the N+1 issue. The db-util project provides an automatic JUnit assert to validate the expected count of SQL statements generated:

@Test
public void shouldNotHaveANPlusOneQuery() {
    // code to configure and execute db-util

    Assert.assertCountOfSqlStatementsPerformed(1);
}
로그인 후 복사

위 내용은 JPA 및 Hibernate에서 N 1 문제를 해결하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿