InterviewSolution
Saved Bookmarks
| 1. |
What do you mean by session management in Spring Security? |
|
Answer» As far as SECURITY is concerned, session management relates to securing and managing multiple users' sessions against their request. It facilitates secure interactions between a user and a service/application and pertains to a sequence of requests and responses associated with a particular user. Session Management is one of the most critical aspects of Spring security as if sessions are not managed PROPERLY, the security of DATA will suffer. To CONTROL HTTP sessions, Spring security uses the following options:
With these two, spring-security can manage the following security session options:
|
|