哪个更好:Java ScheduledExecutorService 或 Spring 框架 @Scheduled
我正在向基于 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果你的项目中已经使用了 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.