InterviewSolution
| 1. |
What Is Stateful Session Bean In Ejb? |
|
Answer» A stateful session bean is a type of enterprise bean which preserve the conversational state with client. A stateful session bean as PER its name keeps associated client state in its INSTANCE variables. EJB Container creates a separate stateful session bean to PROCESS client's each request. As soon as request scope is over, statelful session bean is destroyed. A stateful session bean is a type of enterprise bean which preserve the conversational state with client. A stateful session bean as per its name keeps associated client state in its instance variables. EJB Container creates a separate stateful session bean to process client's each request. As soon as request scope is over, statelful session bean is destroyed. |
|