用struts标签: <s:property value="#sessionhello" />
用EL表达式:${sessionhello}
用java代码:<%=sessiongetAttribute("hello")%>
在jsp上内置就有session对象,可以直接用。
例如:<%=sessiongetAttribute("hello") %>
非要通过struts2的话,就用
1 >
<% String session = requestgetSession()getAttribute(Key)%>
Key就是你要取Session中的Key值
var str = "${sessionScopeaa}";
alert(str);
为何不行?
将action里面put的code和JS附近代码全部放出来
jsp获取action传来的session值问题,有以下几种方法:
比如action中有个session ("sessionid","11111111");
一、用struts标签获取:<s:property value="#sessionsessionid"/>;
二、<%=requestgetSessiongetAttribute("sessionid");> session也是内置对象之一,可以直接用session,比requestgetSession方便多了,也可以写成<%=sessiongetAttribute("sessionid");>;
三、el表达式获取:${sessionScopesessionid};
如果赋值的是个bean,也是一样的,类似于${sessionScopebeanbeansth}。
首选需要确保将参数值设置入session的代码必须要在action调用之前就要进行,其次执行的action必须和设置session的 *** 作为同一回话状态。
例如:
我在访问Loginjsp的时候,在jsp中写入了如下内容仅贴出body中的内容:
<body><%
sessionsetAttribute("code","jammiwang");
Systemoutprintln(sessiongetAttribute("code"));
%>
<s:form action="login">
<s:textfield key="username" label="用户名"></s:textfield>
<s:password key="password" label="密码"></s:password>
<s:submit></s:submit>
</s:form>
</body>
然后点击提交按钮之后在我的LoginAction中进行参数的接收,代码如下:
public String execute() throws Exception {if (username == null || usernamelength() == 0) {
return INPUT;
}
Systemoutprintln("code=" + ServletActionContextgetRequest()getSession()getAttribute("code"));
return SUCCESS;
}
控制台打印的输出结果如下:
code=jammiwang事实证明,action的session和jsp的session是用的同一个session
以上就是关于在struts2中怎么获取session等域对象 曲终人散全部的内容,包括:在struts2中怎么获取session等域对象 曲终人散、struts.xml配置文件中,能获取session中的值吗、struts2里怎么用脚本取session等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)