Struts2---OGNL表达式和EL表达式
Posted wujixing909
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Struts2---OGNL表达式和EL表达式相关的知识,希望对你有一定的参考价值。
在action里放入actioncontext的变量值
ActionContext.getContext().put("forumList", forumList);
在jsp里如何取出, OGNL方式:
<s:iterator value="#forumList">
<s:property value="#request.name"/>
EL方式:
<s:iterator value="#forumList">
${name}
在action里放入valuestack的值
ActionContext.getContext().getValueStack().push(forum);
在jsp里取出
<td><s:textfield name="name" cssClass="InputStyle" /> *</td> <td><s:textarea name="description" cssClass="TextareaStyle"></s:textarea></td>
在action里放入session
ActionContext.getContext().getSession().put("user", user);
jsp里取出
<s:if test="#session.user.hasPrivilegeByName(name)">
以上是关于Struts2---OGNL表达式和EL表达式的主要内容,如果未能解决你的问题,请参考以下文章