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
What is a local interface?
in EJB diclare the static methods are not?
What is stateless and stateful session bean in ejb?
What are ejb components?
Is soap stateless or stateful?
What is the advantage of using entity bean for database operations, over directly using jdbc api to do database operations? When would I use one over the other?
What are the system services of ejb container?
What is the difference between @requestparam and @pathvariable?
What do you mean enterprise javabeans (ejb) container?
Are entity beans allowed to create() methods?
How to generate ejb stubs in eclipse?
What is ejb home object?
What is bean-managed persistence?
How is consistency maintained by Stateful Session through transaction updates ?
What are the callback annotations for entity bean?