JPQL:如何检索数据列表并为该列表中的每个数据设置值
所以我有一个实体Notification
,它有一个布尔属性readStatus
来确定通知是否已被读取。当我单击按钮时,我想编写一个 JPQL 来检索未读通知 (readStaus=false
) 并将这些未读通知的 readStatus
设置为 true< /code>
注意:我不想编写 jpql 来检索列表并手动循环列表以设置 readStatus
并将它们合并回数据库
So I have a entity Notification
, that has a boolean attribute readStatus
to determine of a notification has been read or not. When I click a button, I want to write a JPQL that retrieve the unread notifications (readStaus=false
) and set the readStatus
of those unread notifications to true
Note: I dont want to write jpql to retrieve the list and manually loop through the list to set the readStatus
and merge them back to the database
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是解决方案
Here is the solution