struts2中的sessionrequest 和action往页面中传值的方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了struts2中的sessionrequest 和action往页面中传值的方法相关的知识,希望对你有一定的参考价值。

 

ActionContext.getContext().put("list", list);

 

ActionContext.getContext().getValueStack().push(listName);//准备回显数据

 

session中放数据:

ActionContext.getContext().getSession().put("user", user);

/** 注销 */
public String logout() throws Exception {
ActionContext.getContext().getSession().remove("user");
return "logout";
}

action中的request:

ServletActionContext.getRequest().getRemoteAddr();//获取IP

 

以上是关于struts2中的sessionrequest 和action往页面中传值的方法的主要内容,如果未能解决你的问题,请参考以下文章

struts2中的Action接口和Actionsupport接口各有啥作用

Struts1和Struts2的区别和对比

二十Struts2中的UI标签

关于Struts2中的ognl-2.6.11.jar和ognl-2.7.3.jar解决思路

struts2标签中在jsp页面如何给值栈中的list和map赋值

struts2在tomcat中的配置