课程
/后端开发
/Java
/JAVA Web开发技术应用——监听器
这两个有什么区别呢?
2016-02-04
源自:JAVA Web开发技术应用——监听器 5-1
正在回答
request.getSession().setAttribute();这个就是把属性值放到session中,比如单个用户信息request.getSession().getServletContext().setAttribute();这个就是把属性值放到application中,比如网站登录人数
Doc献世
举报
本课程从Java Web中的监听器的概念和用途入手,结合实例讲解
1 回答getSession(true);
1 回答事件在什么时候加getSession(),什么时候不用加,可以getServletContext()
2 回答request.getServletContext.setAttribute()和session的setAttribute()区别,为什么这里用request不用session?
1 回答request.getSession().getServletContext()和request.getServletContext()什么区别?
1 回答setAttribute为什么怎样写