javajakarta-eedistributionsession-bean

Static variables restriction in session beans


It's impossible to use static variables on a session bean code. Is this restriction arbitrary or fundamented? And why?

Best regards


Solution

  • As stated in the FAQ on EJB restrictions, one of the restrictions for using EJBs is:

    enterprise beans should not read or write nonfinal static fields

    Further expanded in the discussion on static fields:

    Nonfinal static class fields are disallowed in EJBs because such fields make an enterprise bean difficult or impossible to distribute. Static class fields are shared among all instances of a particular class, but only within a single Java Virtual Machine (JVM). Updating a static class field implies an intent to share the field's value among all instances of the class. But if a class is running in several JVMs simultaneously, only those instances running in the same JVM as the updating instance will have access to the new value. In other words, a nonfinal static class field will behave differently if running in a single JVM, than it will running in multiple JVMs. The EJB container reserves the option of distributing enterprise beans across multiple JVMs (running on the same server, or on any of a cluster of servers). Nonfinal static class fields are disallowed because enterprise bean instances will behave differently depending on whether or not they are distributed.

    It is acceptable practice to use static class fields if those fields are marked as final. Since final fields cannot be updated, instances of the enterprise bean can be distributed by the container without concern for those fields' values becoming unsynchronized.