如何在ear部署上自动执行会话bean的方法?
我需要一种方法来每周在特定时间定期执行会话 bean 的方法。我正在考虑使用石英调度程序来做到这一点。我的问题是,如何在 .ear 文件自动部署时启动调度程序运行?是否有任何注释可以在调用 Scheduler.start 方法(例如 @PostConstruct 或其他方法)的无状态会话 bean 上使用?
I need a way to have a session bean's method executed periodically every week at a certain time. I am thinking of using the quartz scheduler to do this. My question is, how do I start the scheduler to run from the moment the .ear file is deployed automatically? Is there any annotation that I can use on the stateless session bean calling the scheduler.start method such as @PostConstruct or something?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于无状态 bean,@PostConstruct 的问题是必须有某些东西触发 bean 的构造。
在 EJB 3.1(自动计时器或启动单例会话 bean)之前,没有标准方法可以完成您想要做的事情。在此之前,您可以使用带有 ServletContextListener 的虚拟 WAR 来设置 EJB 计时器。
The problem with @PostConstruct for a stateless bean is that something has to trigger the bean to be constructed.
There's no standard way to do what you're trying to do until EJB 3.1 (automatic timers or startup singleton session beans). Until then, you could use a dummy WAR with a ServletContextListener to set up your EJB timer.