当前位置: 技术问答>java相关
谁帮帮我吧
来源: 互联网 发布时间:2015-08-02
本文导语: 能告诉我 session.setAttribute(); 和 request.setAttribute(); 他们存入的值的有效范围? | 1.session.setAttribute(); If the object being stored in the session object implements HttpSessionBindingListener, then the container calls HttpSess...
能告诉我
session.setAttribute();
和
request.setAttribute();
他们存入的值的有效范围?
session.setAttribute();
和
request.setAttribute();
他们存入的值的有效范围?
|
1.session.setAttribute();
If the object being stored in the session object implements HttpSessionBindingListener, then the container calls HttpSessionBindingListener.valueBound.
If you have an invalidated session then this function throws an IllegalStateException.
2.request.setAttribute();
跟session的方法不同,你只能使用在一个request里面
要想使用里面保存的对象,只能在include或者forward的页面使用
RequestDispatcher dispatcher = getServletContext().getRequestDispatcher(url);
request.setAttribute("name", "test");
dispatcher.forward(request, response);
//那么第二个页面也能使用request里面的对象
要是该request不是从dispatcher传递过去的
里面不会包含先前设置的对象
If the object being stored in the session object implements HttpSessionBindingListener, then the container calls HttpSessionBindingListener.valueBound.
If you have an invalidated session then this function throws an IllegalStateException.
2.request.setAttribute();
跟session的方法不同,你只能使用在一个request里面
要想使用里面保存的对象,只能在include或者forward的页面使用
RequestDispatcher dispatcher = getServletContext().getRequestDispatcher(url);
request.setAttribute("name", "test");
dispatcher.forward(request, response);
//那么第二个页面也能使用request里面的对象
要是该request不是从dispatcher传递过去的
里面不会包含先前设置的对象
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。