java session默认过期时间
session 过期时间配置 默认在 tomcat安装包下/conf/web.xml文件里
默认30 分钟
HttpSesson session=request.getSession();
session.setAttribute("test","123");
String sessionId=session.getId();
Cookie cookie=new Cookie("JSESSIONID",sessionId);
cookie.setPath(request.getContextPath());
cookie.setMaxAge(10*60);//10分钟过期