如何在ear部署上自动执行会话bean的方法?

发布于 2024-08-02 11:07:01 字数 161 浏览 6 评论 0原文

我需要一种方法来每周在特定时间定期执行会话 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 技术交流群。

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

发布评论

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

评论(1

若水微香 2024-08-09 11:07:01

对于无状态 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.

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