As Title,
I close chrome and open it again but session id won't change.
But Firefox and IE work !!!!
Why?
session = request.getSession();
sessonId = session.getId();
response.setContentType("text/html;charset=UTF-8");
out = response.getWriter();
out.print("<html><head><title>TestSession</title></head><body>");
out.print("sessionId: "+sessonId);
out.print("</body></html>");
out.close();