@Schedule 相当于 Guice:以指定的时间间隔执行 @singleton 中的任务
我正在使用 Google Guice、Guice servlet 和 Jersey。我想找到一种在 JVM 中运行计划作业的简单方法。我发现以下 EJB 示例创建了“带有 @Schedule 方法的 @Singleton EJB,该方法以指定的时间间隔在后台执行”。这正是我想做的,但希望看到一种简单的方法来做到这一点,而不添加 EE 依赖项。
I'm using Google Guice, Guice servlet, and Jersey. I'd like to find an easy way to run scheduled jobs in the JVM. I found the following EJB example that creates "a @Singleton EJB with @Schedule method which executes in the background at specified intervals." This is exactly what I'd like to do but wanted to see an easy way to do this w/o adding an EE dependency.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能会发现 Guice 的 Quartz 集成可以满足您的要求 -
https://github.com/99soft/guartz
这是语法示例
You might find the Quartz integration for Guice meets your requirements here -
https://github.com/99soft/guartz
Here's an example of the syntax