When working with relational databases, stored procedures are a common way to encapsulate business logic at the database level. In Java applications using JPA (Java […]
Continue readingTag: JPA
Jakarta Data – An unified API for Persistence
Jakarta Data is an specification which unifies the repository pattern with JPA and Jakarta NoSQL integrating it with BeanValidation, Transactions, and CDI with the goal of simplify the development of code.
Continue readingEffective data load in JPA with Entity Graph
PA 2.1 has introduced the Entity Graph feature, and it’s a very useful when we need to load data from a relationship in the query, in a different way as the mapped in the entity.
Continue readingUsing JPA CriteriaQuery to build Paginated Queries
Simple example of creating Pagination using JPA Criteria queries.
Continue reading