Servlet(二)

Cookie和Session
两个会话跟踪机制

Cookie
//创建cookie
Cookie cookie1=new Cookie("name","root");
Cookie cookie2=new Cookie("password","123");

//指定cookie绑定路径
//路径加上项目名称
cookie1.setPath(request.getContextPath()+"/xxx/ooo/aaa");
cookie2.setPath(request.getContextPath()+"/bbbb");
cookie1.getPath();

//设置cookie时间 单位为秒
cookie1.setMaxAge(60*60);
cookie2.setMaxAge(60*60);

//添加cookie
res

Servlet(二)最先出现在Python成神之路

版权声明:
作者:Alex
链接:https://www.techfm.club/p/13939.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>