AdvancedAdvanced PostgreSQL
Spring Data JPA & PG: Batch inserts (Part 8)
The query
SQL
-- Q: How does Hibernate interact with PostgreSQL regarding Batch inserts?
@Entity
public class PracticeEntity {
@Id
@GeneratedValue(strategy = GenerationType.SEQUENCE)
private Long id;
}Note
“Using GenerationType.SEQUENCE is vastly superior to IDENTITY in PostgreSQL for bulk inserts.