计时quartz任务执行时长
是否有记录 Quartz 执行任务所需时间的标准方法?我也对基于 Spring 的解决方案持开放态度,因为我正在使用两者。
Is there a standard way of logging the time Quartz takes to execute a task? I'm open to Spring based solutions as well, as I'm using both.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用通用计时库,例如 ERMA。它与弹簧结合得非常好。
You can use a general purpose timing library, such as ERMA. It integrates very nicely with spring.
您可以实现 JobListener 并将其添加为 全局作业监听器到调度程序。
这将为您提供一些有关作业何时即将执行以及何时完成执行的信息。您应该能够使用这些挂钩执行某些操作来记录作业的开始和结束时间,然后记录运行时间。
You could implement a JobListener and add it as a global job listener to the scheduler.
This will give you some hooks on when a job is about to be executed and when it has finished executing. You should be able to do something with these hooks to record the start and end times of the jobs, and then log the run time.
您可以使用
JobListener
来实现此目的。作业的执行时间甚至由上下文提供。监听器需要添加到使用的Scheduler
中:-
You can use a
JobListener
for that. The execution time of a job is even provided by the context. The Listener need to be added to the usedScheduler
:-