#jpa

[ follow ]
#hibernate
Java
fromMedium
1 month ago

I Ignored These JPA Methods for Years-Now Spring Boot Application 10 Faster

Use existsById() for existence checks and saveAll() with batching to reduce queries, memory use, and improve application performance and code clarity.
Java
fromMedium
1 month ago

I Ignored These JPA Methods for Years-Now Spring Boot Application 10 Faster

Using JpaRepository.existsById and saveAll with proper batching reduces queries, memory use, and can improve application performance up to tenfold.
Java
fromInfoWorld
3 months ago

What is JPA? Introduction to Java persistence

JPA enables CRUD via EntityManager and maps entity relationships (one-to-many, many-to-one, many-to-many, one-to-one) using annotations and foreign keys.
[ Load more ]