欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Struts 利用cookie保存用户的登陆信息

程序员文章站 2022-07-03 16:59:00
...
Cookie cookieUser = new Cookie("userId",request.getParameter("userId"));
cookieUser.setMaxAge(60*60*24*30*365);
cookieUser.setPath("/");
response.addCookie(cookieUser);

Cookie cookiePassword = new Cookie("password", request.getParameter("password"));
if ("1".equals(this.getContext().getParam("keepPass"))){
cookiePassword.setMaxAge(60 * 60 * 24 * 30 * 365);
}else{
cookiePassword.setMaxAge(0);
}
cookiePassword.setPath("/");
this.getResponse().addCookie(cookiePassword);
相关标签: Struts Java