嵌入式 Glassfish - EJB 3.1 - @Schedule
我是 Java EE 6 的新手,正在努力让许多演示应用程序最终运行。
我有一个应用程序范围的 bean,上面有一个 @Schedule 注释,理论上应该每分钟触发该方法。但是,该方法似乎从未被调用。它只是将其被调用的信息写入日志。
我可以在嵌入式 glassfish 上使用 EJB3.1 吗?我需要做一些特别的事情才能让它发挥作用吗?
沃尔特
I am new to Java EE 6 and working on getting a number of demo applications running finally.
I have an application scoped bean that has a @Schedule annotation on it that should in theory trigger that method every minute. However, that method doesn't appear to ever be invoked. It simply writes to the logs that it was called.
Can I use EJB3.1 on embedded glassfish? Do I need to do anything special to make it work?
Walter
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
嗯...什么?
嵌入式 GlassFish 就像完整的 GlassFish,没有任何限制。因此,您可以将 EJB 3.1 与完整的 Java EE 配置文件实现结合使用,也可以将 EJB 3.1 Lite 与 Web 配置文件实现结合使用。我不确定 @Schedule 是否是 EJB 3.1 Lite 的一部分。
Hmm... What?
Embedded GlassFish is like a full GlassFish, there are no restrictions. So you can use EJB 3.1 with the full Java EE profile imeplementation and you can use EJB 3.1 Lite with the Web Profile implementation. I'm not sure
@Schedule
is part of EJB 3.1 Lite tough.