由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Java版 - java servlet httpsession问题求教
相关主题
One more servlet Q: Http SessionWho's online--JSP?
简单的EJB问题Stateful session bean到底有啥好处?
有没有办法在browser第一次访问的时候知道是不是支持cookie?有weblogic的大牛或者spring security的大牛来帮帮忙吗?
请问一个问题Another Servlet Problem:Browser Caching
Re: 有没有办法在browser第一次访问的时候知道是不是支持cookie?Servlet & Cookie 求助
httpsession 问题question: how to implement this
JSP+SERVLET网站一般用下面方式来保存和传递变量和参数关于Jsp timeout
How to invalidate a session?eclipse problem
相关话题的讨论汇总
话题: browser话题: session话题: servlet话题: java
进入Java版参与讨论
1 (共1页)
s*******y
发帖数: 558
1
请问打开一个browser 是不是就算一个新的session叻
HttpSession session = response.getSession();
上面这条语句是不是每次打开一个新的browser就会生成一个
新的session, 而不能得到以前browser的信息?
有否可能 打开新的browser还是当前的session呢?
谢谢
m******t
发帖数: 2416
2

Usually, yes.

【在 s*******y 的大作中提到】
: 请问打开一个browser 是不是就算一个新的session叻
: HttpSession session = response.getSession();
: 上面这条语句是不是每次打开一个新的browser就会生成一个
: 新的session, 而不能得到以前browser的信息?
: 有否可能 打开新的browser还是当前的session呢?
: 谢谢

w******t
发帖数: 1422
3

^^^^^^^^^^^^^^^^^^
if you open your new browser by "ctl-N" - then it's same session,
o/w, you're right

【在 m******t 的大作中提到】
:
: Usually, yes.

g*****g
发帖数: 34805
4
You can't, but you may use cookie to store some information that interests
you. Such as the user profile.

【在 s*******y 的大作中提到】
: 请问打开一个browser 是不是就算一个新的session叻
: HttpSession session = response.getSession();
: 上面这条语句是不是每次打开一个新的browser就会生成一个
: 新的session, 而不能得到以前browser的信息?
: 有否可能 打开新的browser还是当前的session呢?
: 谢谢

w******t
发帖数: 1422
5
his question is not that clear. if all he want to achieve is to make info
available for multiple sessions, try to save the info in app / context level.
(which makes me suspect that if that's really what he want, or maybe a
misunderstanding of the requirements?)

【在 g*****g 的大作中提到】
: You can't, but you may use cookie to store some information that interests
: you. Such as the user profile.

m******t
发帖数: 2416
6

level.
IIUC, what he wants is something like the "Remember Me" thing on the login
screen we typically see. 8-) That can done by setting a persistent cookie.

【在 w******t 的大作中提到】
: his question is not that clear. if all he want to achieve is to make info
: available for multiple sessions, try to save the info in app / context level.
: (which makes me suspect that if that's really what he want, or maybe a
: misunderstanding of the requirements?)

1 (共1页)
进入Java版参与讨论
相关主题
eclipse problemRe: 有没有办法在browser第一次访问的时候知道是不是支持cookie?
javaMail的问题httpsession 问题
session lost between JSP and StrutsJSP+SERVLET网站一般用下面方式来保存和传递变量和参数
problem about a web accessHow to invalidate a session?
One more servlet Q: Http SessionWho's online--JSP?
简单的EJB问题Stateful session bean到底有啥好处?
有没有办法在browser第一次访问的时候知道是不是支持cookie?有weblogic的大牛或者spring security的大牛来帮帮忙吗?
请问一个问题Another Servlet Problem:Browser Caching
相关话题的讨论汇总
话题: browser话题: session话题: servlet话题: java