一、通过解除耦合的方法
在src/action/UserAction中的login方法中:
if (userName.equals("张三")) {
Map<String, Object> session = ActionContext.getContext()
.getSession();
session.put("currUser", userName);
return "success";
}else{
return "error";
}
在success.jsp页面:
${sessionScope.currUser }
二、通过耦合的方法
HttpSession session=ServletActionContext.getRequest().getSession();
session.setAttribute(arg0, arg1);