JPA 2.1: Bulk Update and Delete

本文介绍JPA2.1中新增的CriteriaUpdate和CriteriaDelete API,用于实现批量更新和删除操作。通过示例展示了如何使用这些API进行高效的数据管理。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

JPA 2.1: Bulk Update and Delete

In the JPA 2.0 and early version, if you want to execute a bulk updating query, you have to use update or delete clause in JPQL directly. JPA 2.1 introduce new Criteria API for updating and deleting.

Post entity

Reuse the Post entity class as example. Add an extra boolean approved property.

In this example, the bulk update operation will set the approved value to true.

<pre> @Entity @Table(name="POSTS") public class Post implements Serializable { private boolean approved = false; } </pre>

Criteria Update and Delete API

In JPA 2.1, new CriteriaUpdate and CriteriaDelete are introduced in Criteria API for updating and deleting. The usage is very simple.

The CriteriaUpdate example.

<pre> CriteriaBuilder cb = em.getCriteriaBuilder(); CriteriaUpdate&lt;Post> q = cb.createCriteriaUpdate(Post.class); Root&lt;Post> root = q.from(Post.class); q.set(root.get("approved"), true) .where(root.get("id").in(getCheckedList())); int result = em.createQuery(q).executeUpdate(); log.info("update @" + result); </pre>

The CriteriaDelete example.

<pre> CriteriaBuilder cb = em.getCriteriaBuilder(); CriteriaDelete&lt;Post> q = cb.createCriteriaDelete(Post.class); Root&lt;Post> root = q.from(Post.class); q.where(root.get("id").in(checkedList)); int result = em.createQuery(q).executeUpdate(); log.info("delete @" + result); </pre>

The checkedList value is from checkbox values from JSF UI.

Summary

This feature is a small improvement to JPA API. If you are stick on the type-safe JPA metadata API for JPA programming, it is a big step.

The sample codes are hosted on my github.com account, check out and play it yourself.

https://github.com/hantsy/ee7-sandbox

When you run the project(jpa-bulk) on Glassfish 4.0 and you could get an exception.

<pre> java.lang.RuntimeException: unable to create policy context directory. </pre>

There is a known issue in Glassfish 4.0, the fix should be included in the next release. I am using a Nightly version to overcome this barrier temporarily.

转载于:https://my.oschina.net/hantsy/blog/180708

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值