如何在 JPA 应用程序中进行定期数据库清理?
简短的背景: 我有一个定期下载文件的软件。这些下载的统计信息作为 DownloadResult 实体存储在数据库中,该实体又与表示下载作业的实体关联。
现在我想确保数据库中仅保留 n 个最新下载中的固定数量。据我所知,在经典(非 ORM/JPA)数据库应用程序中,这将通过存储过程来完成。
在 JPA 驱动的应用程序中执行此操作的正确方法是什么?
Short background:
I have a software that regularly downloads files. The Statistics of these downloads are stored in the database as a DownloadResult entity, which is in turn associated to the entity representing the download job.
Now I want to make sure, that only a fixed number of the n latest downloads are preserved in the database. AFAIK in a classical (non ORM/JPA) database application, this would be done with a stored procedure.
What would be the right way to do this in a JPA driven application?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果你想留下来,你可以尝试 Quartz http://www.quartz-scheduler.org/在 Java 边界内,如果没有要求,您可以使用存储过程。
You can try Quartz http://www.quartz-scheduler.org/ if you want to stay withing Java boundaries, if it is not a requirement you can go with stored procedures.