简体   繁体   中英

How do I get rid of tomcat default session id?

I am using tomcat 6.0.14, which does not support configuration for cookies.

So I have couple of pages in my app:

app.com/login.jsp<br>
app.com/dasboard.htm

The problem is that when user is at login.jsp , I see JSESSIONID as a cookie. I want to see session cookies only post logon when I am at dashboard - How do I make this happen?

By default every JSP creates new HTTP session (which is not the case for user servlets). Add this on top of your login.jsp to avoid eager session creation:

<%@ page session="false" %>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM