Under what conditions is a JSESSIONID created?

后端 未结 5 873
灰色年华
灰色年华 2020-11-22 09:34

When / what are the conditions when a JSESSIONID is created?

Is it per a domain? For instance, if I have a Tomcat app server, and I deploy multiple web

5条回答
  •  盖世英雄少女心
    2020-11-22 10:12

    For links generated in a JSP with custom tags, I had to use

    <%@ page session="false" %>
    

    in the JSP

    AND

    request.getSession().invalidate();
    

    in the Struts action

提交回复
热议问题