我的项目中有struts2.0,我通过实现SessionAware将用户名存储在会话中,如下所示
public class NewProduct extends ActionSupport implements SessionAware{
private Map session;
public String execute() {
session.put("username", "Rangappa");
return "success"
}
public void setSession(Map session) {
this.session = session;
}
public Map getSession() {
return session;
}
在这里我在这里设置会话变量,我没有得到如何在其他类中获取这个会话变量,我如下完成但它不起作用
public class NewProduct extends ActionSupport implements SessionAware{
public String execute() throws Exception {
String username = (String) session.get("username");
System.out.println("username: "+username );
return "success"
}
}
两个课程都在同一个包中,请告诉我解决方案,谢谢我提前