I am curious to know that why spring mvc store object in its own sessions when we submit a form. Will this cause any overhead or insecurity?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Spring doesn’t store anything in the session unless you tell it to. You have direct access to the session.
Session-scoped beans can go in some container inside the http session, but that’s an implementation details, and it doesn’t head an overhead or insecurity.