Static variables restriction in session beans

只愿长相守 提交于 2019-12-06 03:03:46

问题


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

Best regards


回答1:


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.




回答2:


It is fundamental. As per this sun documenation,

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). *




回答3:


static means unique for a class OR for all it's objects.

Now, javabeans are supposed to have user-specific data, static fields don't make any sense for these.

One user edits a variable, ant it'll be updated for all other users too. (at free of cost :-)).

However if you want static behaviour for these (i.e. using same data for all users), you have application for that purpose.



来源:https://stackoverflow.com/questions/9141673/static-variables-restriction-in-session-beans

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!