Why is spawning threads in Java EE container discouraged?

54,319

Solution 1

It is discouraged because all resources within the environment are meant to be managed, and potentially monitored, by the server. Also, much of the context in which a thread is being used is typically attached to the thread of execution itself. If you simply start your own thread (which I believe some servers will not even allow), it cannot access other resources. What this means, is that you cannot get an InitialContext and do JNDI lookups to access other system resources such as JMS Connection Factories and Datasources.

There are ways to do this "correctly", but it is dependent on the platform being used.

The commonj WorkManager is common for WebSphere and WebLogic as well as others

More info here

And here

Also somewhat duplicates this one from this morning

UPDATE: Please note that this question and answer relate to the state of Java EE in 2009, things have improved since then!

Solution 2

For EJBs, it's not only discouraged, it's expressly forbidden by the specification:

An enterprise bean must not use thread synchronization primitives to synchronize execution of multiple instances.

and

The enterprise bean must not attempt to manage threads. The enterprise bean must not attempt to start, stop, suspend, or resume a thread, or to change a thread’s priority or name. The enterprise bean must not attempt to manage thread groups.

The reason is that EJBs are meant to operate in a distributed environment. An EJB might be moved from one machine in a cluster to another. Threads (and sockets and other restricted facilities) are a significant barrier to this portability.

Solution 3

The reason that you shouldn't spawn your own threads is that these won't be managed by the container. The container takes care of a lot of things that a novice developer can find hard to imagine. For example things like thread pooling, clustering, crash recoveries are performed by the container. When you start a thread you may lose some of those. Also the container lets you restart your application without affecting the JVM it runs on. How this would be possible if there are threads out of the container's control?

This the reason that from J2EE 1.4 timer services were introduced. See this article for details.

Solution 4

Concurrency Utilities for Java EE

There is now a standard, and correct way to create threads with the core Java EE API:

By using Concurrency Utils, you ensure that your new thread is created, and managed by the container, guaranteeing that all EE services are available.

Examples here

Solution 5

There is no real reason not to do so. I used Quarz with Spring in a webapp without problems. Also the concurrency framework java.util.concurrent may be used. If you implement your own thread handling, set the theads to deamon or use a own deamon thread group for them so the container may unload your webapp any time.

But be careful, the bean scopes session and request do not work in threads spawned! Also other code beased on ThreadLocal does not work out of the box, you need to transfer the values to the spawned threads by yourself.

Share:
54,319
Tarun Bhargav
Author by

Tarun Bhargav

a java bean and a python egg

Updated on July 08, 2022

Comments

  • Tarun Bhargav
    Tarun Bhargav almost 2 years

    One of the first things I've learned about Java EE development is that I shouldn't spawn my own threads inside a Java EE container. But when I come to think about it, I don't know the reason.

    Can you clearly explain why it is discouraged?

    I am sure most enterprise applications need some kind of asynchronous jobs like mail daemons, idle sessions, cleanup jobs etc.

    So, if indeed one shouldn't spawn threads, what is the correct way to do it when needed?

  • Ken Liu
    Ken Liu almost 14 years
    it is indeed forbidden by the spec.
  • rjohnston
    rjohnston almost 12 years
    you cannot get an InitialContext and do JNDI lookups to access other system resources such as JMS Connection Factories and Datasources. I have an app that works around this by injecting the datasource when starting the threads, but I might have to rethink this approach...
  • Chris Ritchie
    Chris Ritchie over 10 years
    There is now a standard, and correct way to create threads with the core Java EE API. By using Concurrency Utils, you ensure that your new thread is created, and managed by the container, guaranteeing that all EE services are available. Examples here and here
  • Chris Ritchie
    Chris Ritchie over 10 years
    Java EE7 Concurrency Utils provide a correct way to create threads in an enterprise environment. Examples here and here
  • Geek
    Geek almost 10 years
    @Dan Can you explain to me why a Thread would be significant barrier to the portability of moving an EJB from one machine in a custer to another?
  • asgs
    asgs over 9 years
    @ChrisRitchie thanks for the tip. if only JBoss AS/IBM WAS supported Java EE 7... :-(
  • Chris Ritchie
    Chris Ritchie over 9 years
    @asgs WildFly 8 (new name for JBoss AS) does support Java EE 7. IBM is only Java EE 6 certified certification
  • Basil Bourque
    Basil Bourque almost 8 years
    JSR 236 added features to support spawning threads in Java EE 7 and later. See this sibling Answer by Chris Ritchie.