explain why we say stateless beans does not maintain
conversation state besides statefull maintains conversation
state. give some examples...
Answer Posted / madhu
We say stateless beans do not maintain state, simply because
it doesn't. Please read below.
As we all know web based interaction is mostly HTTP based
which is a stateless protocol. Statelessness is defined in
simple terms as, does not keep track of previous
conversation. That means, each and every request is
independent of the other.
Stateless or stateful session beans are no exception and
they are HTTP based as well or work in conjunction with such
front end mechanisms (such as JSPs, Servlets, ASPs etc..).
So unless otherwise, we specifically maintain that state,
all the beans would remain stateless.
In the case of Stateful session beans, we maintain it in the
form of parameter value, which is maintained through out the
session.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
How can a session bean be configured for transactions of bean-managed?
What is bean-managed persistence?
What is ejb application?
Is functional programming stateless?
What is remote interface in ejb?
What is the purpose of ejb in java?
What is stateful session bean?
What is the difference between ejb and java beans?
What do you understand by session facade?
Explain the architectural relationship between JavaBeans and JTA?
Is it legal to have static initializer blocks in ejb?
What are the key features of the ejb technology?
What is ejb bean in java?
What is ptp model?
What is EJB object?