InterviewSolution
Saved Bookmarks
| 1. |
What Does A Remove Method Do For Different Cases Of Beans? |
|
Answer» Stateless Session : Does not do anything to the BEAN as moving the bean from FREE pool to CACHE are managed by the container depending on LOAD. Stateful Session: Removes the bean from the cache. ENTITY Bean: Deletes the bean (data) from persistent storage. Stateless Session : Does not do anything to the bean as moving the bean from free pool to cache are managed by the container depending on load. Stateful Session: Removes the bean from the cache. Entity Bean: Deletes the bean (data) from persistent storage. |
|