In EBs the DB state is more consistent than SBs why?
Answer Posted / john
The Entity Bean is directly interacting with the database.
AS and when new transactions are made they are recordeed in
the database to take care of persistence.
In case of session beans all transactions are maintained in
a session. It is not necessary that the user has to submit
these trasnactions to the DB. The user may choose not to
submit them and the trtasnactiosn in the session will be
lost. This can also occur whe the user closes the browser
without submitting or when the session expires due to a time
out.
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is remote interface in ejb?
What are the components of session beam?
A client wants to preserve the reference to the ejbhome object of an enterprise bean instance and use it later. Which of the following can be serialized for this purpose?
What is session facade in ejb?
How to generate ejb stubs in eclipse?
What is ejb bean in java?
What do you mean enterprise javabeans (ejb) container?
What are stateless applications?
What is ejb ql?
How to increase ejb transaction timeout in weblogic?
How to import ejb project in eclipse?
What is Session Bean Interface?
What is enterprise javabeans (ejb) container?
Which of the recommended practices to be performed in the ejbpassivate() method of a stateful session bean?
Is soap stateless or stateful?