Stateless and Stateful Enterprise Java Beans

后端 未结 7 2037
我在风中等你
我在风中等你 2020-11-28 17:52

I am going through the Java EE 6 tutorial and I am trying to understand the difference between stateless and stateful session beans. If stateless session beans do not retain

相关标签:
7条回答
  • 2020-11-28 18:33

    It has good answers. I would like to add small answer. Stateless Bean should not used to hold any client data. It should be used to "to model actions or processes that can be done in one shot".

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