3

我是 struts2 的新手,我正在尝试使用动态会话密钥检索会话对象。

我的应用流程是这样的:用户将从他们的浏览器中点击操作

http://localhost:8080/prjcr/pad.action?userid=p02585@test.org 

在操作类中,我使用 p02585@test.org 请求参数从 Web 服务中检索值列表,并将它们存储在会话中,如下所示:

//get the request parameter
userid=ServletActionContext.getRequest().getParameter("userid);    
QDefn[] qDefn = proxy.getQDefns(userid); //webservice call   
List<QDefn> qdList = new ArrayList<QDefn>();   
qdList.add(Arrays.asList(qDefn));  

提取请求参数的用户标识部分以用作会话密钥

userid = userid.substring("UserId", userid.substring(0, userid.indexof('@'));   
//The key itself is what we receive in the request parameter  
ActionContext.getContext().getSession().put("UserId", userid);      

然后将相关的值列表推送到会话中

ActionContext.getContext().getSession().put(userid, qdList);  

并转发到一个 JSP,该 JSP 在选择下拉列表中显示此列表,如下所示:

<s:select name="qdefn" 
id="qdefn" 

list="#session.%{#session.UserId}"  ---What is the notation here??

listKey="defnName"
listValue="defnName"
headerKey="ALLQD"
headerValue="All" > </s:select>  

我尝试使用动态会话密钥(即用户 ID)从 jsp 中的会话中提取 qdList。在 java 中,我们将其作为 session.get(userid) 进行。我还不能理解 OGNL 符号。所以,我不知道如何在 Struts2/OGNL 中做到这一点。

提前致谢

4

1 回答 1

0

如果你做一个

System.out.println(ActionContext.getContext().getSession().getClass());

在您的操作中,您将获得“class org.apache.struts2.dispatcher.SessionMap”,但如果您执行

out.println(session.getClass());

在你的jsp中你会得到'class org.apache.catalina.session.StandardSessionFacade'或类似的东西(我使用tomcat)

所以试试

session.getAttribute(userid);

代替

session.get(userid);
于 2012-05-25T17:42:37.420 回答