在JBoss中替换Websphere的WorkManager

在JBoss中替换Websphere的WorkManager

本文介绍了在JBoss中替换Websphere的WorkManager?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我们正在从Websphere迁移到JBoss,但有些代码依赖于Websphere的WorkManager(com.ibm.websphere.asyncbeans.WorkManager)。有没有人以前处理过这个问题并且有关于如何替换Websphere的WorkManager以及你用它取代它的建议?

We're moving from Websphere to JBoss, but some of the code has dependencies on Websphere's WorkManager (com.ibm.websphere.asyncbeans.WorkManager). Has anyone dealt with this before and have recommendations on how to replace Websphere's WorkManager and what you'd replace it with?

推荐答案

不幸的是,目前没有WorkManager等效的Java EE标准;但是,(Java EE的并发实用程序)可能会重新成为候选人包含在中。

Unfortunately, there is currently no Java EE standard for a WorkManager equivalent; however, JSR-236 (Concurrency Utilities for Java EE) may be back as a candidate for inclusion in Java EE 7.

在此之前,根据您当前使用IBM异步Bean WorkManager的方式以及您的具体用例,您可能需要考虑几个不同的选项 -

Until then, depending on how you are currently using the IBM async beans WorkManager and your specific use cases, you may have a few different options to consider -



  • 定时服务

  • Asynchronous Beans

  • 异步Servlet

  • CommonJ WorkManager
  • EJB 3.0 Timer Service
  • EJB 3.1 Asynchronous Beans
  • Servlet 3.0 Asynchronous Servlets

这篇关于在JBoss中替换Websphere的WorkManager?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-27 20:04