问答详情
源自:5-1 统计在线用户及人数

getsession().setattribute与getsession().getservletcontext().setattribute的区别

这两个有什么区别呢?

提问者:那点光 2016-02-04 12:39

个回答

  • 取经之路就在脚下
    2016-02-05 00:13:22

    request.getSession().setAttribute();
    这个就是把属性值放到session中,比如单个用户信息
    request.getSession().getServletContext().setAttribute();
    这个就是把属性值放到application中,比如网站登录人数