InterviewSolution
Saved Bookmarks
| 1. |
What is the importance of session scope? |
|
Answer» Session scopes are used to create BEAN INSTANCES for HTTP sessions. This would mean that a single bean can be used for serving multiple HTTP REQUESTS. The scope of the bean can be defined by means of using scope attribute or using @Scope or @SessionScope annotations.
|
|