首页 > 代码库 > struts2的传值方式

struts2的传值方式



public String getValue()
{
this.username = "tomcat";
this.password = "123456";
this.nickname = "tomcat nick";
ActionContext.getContext().put("user", "this is a user");
ServletActionContext.getRequest().setAttribute("pd", "this is a password");
return "value";

}


以上是三种传值方式



下面是EL表达式与OGNL表达式的显示值的试。

el:{usrename}<br/>
el:{password}<br/>
el:{nickname}<br/>
el:{user}<br/>
el:{pd}<br/>




struts:<s:property value=http://www.mamicode.com/"username"/>

struts:<s:property value=http://www.mamicode.com/"password"/>

struts:<s:property value=http://www.mamicode.com/"nickname"/>

struts:<s:property value=http://www.mamicode.com/"user"/>

struts:<s:property value=http://www.mamicode.com/"#request.pd"/>

struts2的传值方式