在ejb 3.1无状态计时器中使用spring服务
我知道普遍的共识是使用其中之一,但我们有一个特定的任务,我们希望在无状态 ejb 计时器中使用我们的 spring 服务。
是否有一种标准方法可以从我的网络应用程序的正常流程之外获取 Spring 服务? (请注意,我正在使用 stripes 框架,它内置了 spring 支持,并且我正在使用此内置支持来正常访问我的 spring 服务)
I know that the general consensus is to use one or the other, but we have a specific task where we would like to use our spring services from within a stateless ejb timer.
Is there a standard way of getting a spring service from outside the normal flow of my web app? (Note I'm using the stripes framework and it has built in spring support and I'm using this built in support to access my spring services normally)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据 Spring 手册,您可以配置 EJB 3 注入拦截器 将负责将 @Autowired springbeans 注入到您的 EJB 会话 Bean 中。
According to the Spring manual you can configure an EJB 3 injection interceptor that will take care of injecting @Autowired springbeans into your EJB Session Beans.