使用shiro中的SimpleCookie存入cookie信息

最近在使用http cookie时发现了shiro下的cookie也可以实现相同的功能
代码如下

SimpleCookie simpleCookie = new SimpleCookie();
simpleCookie.setName("lang");
simpleCookie.setValue(lang);
Cookie cookie = simpleCookie;
//"lang",lang
cookie.setComment("lang type");
cookie.setMaxAge(24*60*60);//最大时间
cookie.saveTo(request,response);

你可能感兴趣的:(java,shiro,SimpleCookie,cookie)