如何在 JPA 应用程序中进行定期数据库清理?

发布于 2024-08-20 07:53:15 字数 196 浏览 6 评论 0原文

简短的背景: 我有一个定期下载文件的软件。这些下载的统计信息作为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

芯好空 2024-08-27 07:53:15

如果你想留下来,你可以尝试 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文