惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

D
DataBreaches.Net
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
云风的 BLOG
云风的 BLOG
B
Blog
博客园 - Franky
I
InfoQ
A
About on SuperTechFans
博客园_首页
L
LangChain Blog
量子位
腾讯CDC
Microsoft Security Blog
Microsoft Security Blog
博客园 - 【当耐特】
美团技术团队
V
V2EX
Apple Machine Learning Research
Apple Machine Learning Research
雷峰网
雷峰网
MongoDB | Blog
MongoDB | Blog
Microsoft Azure Blog
Microsoft Azure Blog
月光博客
月光博客
T
The Blog of Author Tim Ferriss
P
Proofpoint News Feed
G
Google Developers Blog
Last Week in AI
Last Week in AI

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
What Is the N+1 Problem in Hibernate/JPA? How to resolve ...
Tapas Pal · 2026-05-17 · via DEV Community

Tapas Pal

The N+1 problem happens when:

Hibernate executes 1 query to fetch parent records
+
N additional queries to fetch child records

Enter fullscreen mode Exit fullscreen mode

This causes:

  • too many database calls
  • performance degradation
  • slow APIs
The Hibernate N+1 problem occurs when Hibernate executes one query
to fetch parent entities and then executes additional queries for
each associated child entity due to lazy loading. This leads to
excessive database round trips and performance degradation. The
most common solution is using JOIN FETCH, EntityGraph, batch
fetching, or DTO projections to load related data efficiently in
fewer queries.

Enter fullscreen mode Exit fullscreen mode

Simple Real-World Example

Suppose: 100 customers each customer has N orders
You want: all customers with their orders
But Hibernate executes:
1 query for customers
100 separate queries for orders

Total: 101 queries
This is: N+1 problem

1. Customer Entity

package com.example.entity;
import jakarta.persistence.*;
import lombok.*;
import java.util.List;

@Entity
@Table(name = "customers")
@Getter
@Setter
@NoArgsConstructor
@AllArgsConstructor
@ToString(exclude = "orders")
public class Customer {
    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    private Long id;
    private String name;

    @OneToMany(
            mappedBy = "customer",
            fetch = FetchType.LAZY,
            cascade = CascadeType.ALL
    )
    private List<Order> orders;
}

Enter fullscreen mode Exit fullscreen mode

2. Order Entity

package com.example.entity;
import jakarta.persistence.*;
import lombok.*;

@Entity
@Table(name = "orders")
@Getter
@Setter
@NoArgsConstructor
@AllArgsConstructor
@ToString(exclude = "customer")
public class Order {
    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    private Long id;
    private String item;

    @ManyToOne(fetch = FetchType.LAZY)
    @JoinColumn(name = "customer_id")
    private Customer customer;
}

Enter fullscreen mode Exit fullscreen mode

Important Thing FetchType.LAZY

means:

  • orders NOT loaded immediately
  • loaded only when accessed

The Problematic Code

List<Customer> customers = customerRepository.findAll();

for(Customer c : customers) {
    System.out.println(c.getOrders().size());
}

Enter fullscreen mode Exit fullscreen mode

Looks harmless. BUT internally dangerous.
What Happens Internally?
Query 1 : Hibernate fetches customers:

SELECT * FROM customer;

Enter fullscreen mode Exit fullscreen mode

Suppose 100 customers returned.

Then Loop Starts Iteration 1 c.getOrders()
Triggers:

SELECT * FROM orders WHERE customer_id = 1;

Enter fullscreen mode Exit fullscreen mode

Iteration 2

SELECT * FROM orders WHERE customer_id = 2;

Enter fullscreen mode Exit fullscreen mode

Final Total 1 + N queries

If: 100 customers then: 101 queries

Visual Representation
Initial Query
SELECT customers
returns:

C1 C2 C3 C4 C5
Then Lazy Loading
C1 → SELECT orders
C2 → SELECT orders
C3 → SELECT orders
C4 → SELECT orders
C5 → SELECT orders

Many DB round trips. Why Is This Bad?
Database calls are expensive.
Problems:

  • network latency
  • DB CPU usage
  • connection pool pressure
  • slow response times

How To Detect N+1 Problem Enable SQL logging.

Spring Boot
spring.jpa.show-sql=true

If you see: repeated similar queries
then likely N+1 issue.

Solution 1. FETCH JOIN

package com.example.repository;

import com.example.entity.Customer;
import org.springframework.data.jpa.repository.*;
import org.springframework.stereotype.Repository;
import java.util.List;

@Repository
public interface CustomerRepository
        extends JpaRepository<Customer, Long> {
    @Query("""
           SELECT DISTINCT c
           FROM Customer c
           JOIN FETCH c.orders
           """)
    List<Customer> findAllCustomersWithOrders();
}

Enter fullscreen mode Exit fullscreen mode

What Happens Now? Hibernate executes ONE query:

SELECT c.*, o.*
FROM customer c
JOIN orders o
ON c.id = o.customer_id;

Enter fullscreen mode Exit fullscreen mode

Result Instead of: 101 queries Only: 1 query

Huge improvement.
Visual

Before
1 customer query + 100 order queries
After FETCH JOIN 1 combined query

2. EntityGraph

@EntityGraph(attributePaths = "orders")
List<Customer> findAll();

Enter fullscreen mode Exit fullscreen mode

Tells Hibernate: load orders together
Advantage : Cleaner than custom JPQL sometimes.

3. Batch Fetching - Hibernate optimization.
Example
spring.jpa.properties.hibernate.default_batch_fetch_size=20
What Happens? Instead of: 100 queries Hibernate batches:

SELECT * FROM orders
WHERE customer_id IN (1,2,3...20)

Enter fullscreen mode Exit fullscreen mode

Much fewer queries.

4. DTO Projection - Best for read-heavy APIs.

Example

@Query("""
       SELECT new com.dto.CustomerDTO(
              c.name,
              o.item)
       FROM Customer c
       JOIN c.orders o
       """)

Enter fullscreen mode Exit fullscreen mode

Avoids entity graph entirely. Very efficient.
** Service Class**

package com.example.service;
import com.example.entity.Customer;
import com.example.repository.CustomerRepository;
import lombok.RequiredArgsConstructor;
import org.springframework.stereotype.Service;
import java.util.List;

@Service
@RequiredArgsConstructor
public class CustomerService {

    private final CustomerRepository customerRepository;
    public void printCustomers() {
        List<Customer> customers =
                customerRepository
                        .findAllCustomersWithOrders();

        for(Customer c : customers) {
            System.out.println(c.getName());
            System.out.println(c.getOrders().size()
            );
        }
    }
}

Enter fullscreen mode Exit fullscreen mode

Interview Question

Q1. Why Not Use EAGER Fetching?

Many thinks: FetchType.EAGER
solves N+1 but NOT always true.

Why?
EAGER can STILL produce N+1.
And may:

  • load unnecessary data
  • create huge joins
  • hurt performance
    Example Suppose:

  • Customer

  • Orders

  • Payments

  • Addresses

EAGER loading everything creates:
Cartesian product explosion
massive memory usage
Best Practice Prefer:
LAZY + FETCH JOIN when needed

Q2. Why LAZY Exists If It Causes N+1?

Because:
loading everything always is worse
sometimes child data not needed

LAZY improves:
memory usage
startup cost
flexibility

Problem occurs only when: iterative lazy access happens

Another Dangerous Situation
Nested N+1.
Example
Customer → Orders → Items
Now queries become:
1 + N + N*M
Can explode massively.

Important Hibernate Internals

N+1 happens because:

  • Hibernate proxy objects
  • lazy initialization
  • session-triggered fetch
  • Lazy Loading Mechanism

Hibernate initially creates:proxy objects

Actual SQL executed only when accessed.
Example c.getOrders()
This line triggers DB query.

Best Solutions Comparison
Solution Best For
FETCH JOIN Most common
EntityGraph Clean JPA
Batch Fetching Large collections
DTO Projection APIs/reporting

Q3. Does N+1 happen only in OneToMany?

NO. Can happen in:

  • ManyToOne
  • OneToOne
  • nested associations