struts2 jsp 通过session获取登录用户id并把值加到流中

1. 获取用户id代码: this.getSessionUserID()

2. 把用户id放到Attribute里面的代码:ServletActionContext.getRequest().getSession().setAttribute("userid", userid);

开发过程中,深刻发现传值和取值的重要性!

3. jsp页面接收另一个jsp页面的传值: request.getParameter(name);name为String类型

你可能感兴趣的:(Struts2.x)