首页 > 编程 > JSP > 正文

jsp获取action传来的session和session清空以及!判断

2019-11-02 15:04:23
字体:
来源:转载
供稿:网友

 这篇文章主要介绍了jsp获取action传来的session和session清空以及判断,需要的朋友可以参考下

jsp获取action传来的session值问题有一下几种方法:  比如我action中有个session ("sessionid","sessionValue")  一、用struts标签获取:<s:property value="#session.sessionid"/>  二、<%=request.getSession.getAttribute("sessionid");> session也是内置对象之一,可以直接用session,比request.getSession方便多了 也可以写成<%=session.getAttribute("sessionid");>  三、el表达式获取:${sessionScope.sessionid}  如果赋值的是个bean,也是一样的,类似于${sessionScope.bean.beanProperty}  一般session的时间是30分钟,如果判断session是否存在  代码如下:<% String id = "";  String username = "";  User user = (User)session.getValue("docUser");  //判断user是否为空,如果不为空才操作以下。不然会报空指针异常。 if(user != null){ id = user.getId();  username = user.getUsername(); } %>  也可以清空session 获取到session然后把他的值设置为null  代码如下:<% Lduser lduser = (Lduser) ActionContext.getContext()
YY4480首播影院[www.aikan.tv/special/YY4480shouboyingyuan/]
.getSession().get("lduser");  if (lduser == null) { session.putValue("lduser",null); out.println("session以关闭"); %>  
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表