Replacing Websphere's WorkManager in JBoss?

后端 未结 2 432
佛祖请我去吃肉
佛祖请我去吃肉 2021-01-01 07:03

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 th

相关标签:
2条回答
  • 2021-01-01 07:16

    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.

    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 -

    • CommonJ WorkManager
    • EJB 3.0 Timer Service
    • EJB 3.1 Asynchronous Beans
    • Servlet 3.0 Asynchronous Servlets
    0 讨论(0)
  • 2021-01-01 07:19

    You could probably checkout the Spring Framework's WorkManager.

    Check this link out for more details : Class WorkManagerTaskExecutor

    0 讨论(0)
提交回复
热议问题