Introduction In this article, I’m going to show you how to write JPA Bulk Update and Delete queries using the amazing Blaze Persistence framework. Blaze Persistence is a JPA framework that allows you to build Criteria queries that are much more powerful than the standard JPA Criteria API. More, it also provides support for Keyset Pagination, which is very useful when having to navigate over large result sets. Domain Model In this article, I’m going to use the same entity classes I’ve used for the JPA Criteria API Bulk Update and Delete... Read More
The post JPA Bulk Update and Delete with Blaze Persistence appeared first on Vlad Mihalcea.