I am newbie to both Spring and Shiro. I have some questions on Session Management.
I saw a question which gives quite a good introduction to Session Management.
But what I did not understand is, how does Shiro communicate with the client to pass the session information, and how will the client authenticate itself again over the subsequent requests. Does Shiro pass a session ID automatically, without me having to code for it?
- Does browser automatically store the session IDs and send it (may be over HTTPS) with subsequent requests?
- How does the session logout communicated to the client? And how does the client understand that it has to login again?
Thanks!