1 在JSP页面中添加如下语句,导入标签:
<%@ taglib prefix="s" uri="/struts-tags" %>
例如下:
<body>
用户名:<s:property vaule="name"/>action中的数据
用户名:<s:property value="#session.user"/>----<a href="logout.action">退出</a>
</body>
处理类中对Session中添加的字段:
public String execute(){
if("siggy".equals(name)&&"1111".equals(pwd)){
ActionContext.getContext().getSession().put("user",name);
return "success";
}else{
return "login";
}
}
使用ognl表达式访问action的属性时,可以直接访问,访问actionContext中的数据时需要加#。