Does session requires the user to sign to generate? Or there is always a session id when using Tomcat?
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.
There is no such thing as a ‘tomcat session’. Tomcat is just a servlet container. Sessions are implemented by frameworks deployed in tomcat, such as Spring, or by Tomcat’s implementation of the JSP standard. There’s no requirement for any sort of login with JSP sessions. If you ask for a session, it will make a session ID.