哪个更好:Java ScheduledExecutorService 或 Spring 框架 @Scheduled

发布于 2025-01-10 10:45:07 字数 387 浏览 0 评论 0原文

我正在向基于 Spring 框架编写的现有项目添加代码。所以想知道我应该选择哪一个:Java ScheduledExecutorService 还是 Spring 框架 @Scheduled

我看到另一篇 帖子,声称使用 spring 框架版本,但我不这样做不太明白原因。我认为如果使用 ScheduledExecutorService ,它看起来比 Spring 框架 @Scheduled 更受我的控制。

I am adding code to existing project written based on Spring framework. So wondering which one I should choose: Java ScheduledExecutorService or Spring framework @Scheduled ?

I see another post, which claims using spring framework version, but I don't quite understand the reason. What I think is if use ScheduledExecutorService , it looks like more under my control than the Spring framework @Scheduled.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

半衬遮猫 2025-01-17 10:45:07

如果你的项目中已经使用了 Spring 框架,那么你不妨使用 @Scheduled 注解来安排你的任务,因为它比 Java 的 ScheduledExecutorService 更容易设置。

但如果你的项目不使用 Spring 框架,我会坚持使用 Java 版本的 Scheduler。

If you are already using Spring framework in your project, then you might as well schedule your task using @Scheduled annotation because it is easy to set it up compared to Java's ScheduledExecutorService.

But if your project doesn't use Spring framework, I'd just stick to Java's version of Scheduler.

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