当前位置:   article > 正文

Java基础知识之生命周期_response的生存周期

response的生存周期

1.cookie生命周期

cookie设置seMaxAge()决定其存在时间, 秒 为单位,由于不同浏览器使用cookie不同(位置或存储形式),故一般不可跨越浏览器使用

2.request生命周期

request生周期为一次请求的生命周期,用完立即释放占用的内存

3.session生命周期

session周期为一浏览器开关之间,关闭后session消失,不能跨越浏览器使用

4.application生命周期

为一次服务器开关时间,可跨越浏览器使用,统计网站访问量

//Cookie设置
Cookie cookie = new Cookie("name", name);
cookie.setMaxAge(***);  //时间不写默认,
cookie.setPath("/");    //路径不写默认,
response.addCookie(cookie);

//Cookie获取
Cookie[] cookies = request.getCookies();
String name = null;
for(int i = 0;cookies != null && i < cookies.length; i++)
{
    if(cookies[i].getName().equals("name"))
    {
        name = cookies[i].getValue();
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16

这里写图片描述

//request获取
request.getParameter("name");

//Application获取
ServletContext application = this.getServletContext();
Object Name = application.getAttribute("name");
name = Name != null ? Name.toString() : null;

//session获取
Object Name = request.getSession().getAttribute("name");
name = Name != null ? Name.toString() : null;
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

这篇写得好,原理以及演示

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/589855
推荐阅读
相关标签
  

闽ICP备14008679号