Struts2:关于取得session的方式
第一种request=ServletActionContext.getRequest();HttpSessionsession=request.getSession();...
第一种
request = ServletActionContext.getRequest();
HttpSession session=request.getSession();
第二种
ActionContext.getContext().getSession().put("user",username);
第一种还是在用Servlet的方式取得session,而第二种是用Struts2的方式取得session 我的理解对吗? 展开
request = ServletActionContext.getRequest();
HttpSession session=request.getSession();
第二种
ActionContext.getContext().getSession().put("user",username);
第一种还是在用Servlet的方式取得session,而第二种是用Struts2的方式取得session 我的理解对吗? 展开
3个回答
2015-08-10 · 知道合伙人教育行家
关注
展开全部
Struts2 取得Session,可采用两种方式:
1、从茄型余ActionContext中获取;
2、实现SessionAware接口。
1、从ActionContext中获取:
import java.util.Map;
import com.opensymphony.xwork2.ActionContext;
import com.opensymphony.xwork2.ActionSupport;
public class SessionTestAction extends ActionSupport {
public String execute(租裤) {
ActionContext actionContext = ActionContext.getContext();
Map session = actionContext.getSession();
session.put("USER_NAME", "Test User");
return SUCCESS;
}
}
2、实现SessionAware接口:
[java] view plaincopyprint?
import java.util.Map;
import org.apache.struts2.interceptor.SessionAware;
import com.opensymphony.xwork2.ActionSupport;
public class SessionTest1Action extends ActionSupport implements SessionAware
{
private Map session;
public void setSession(Map session) {
this.session = session;
}
public String execute(颤滚) {
this.session.put("USER_NAME", "Test User 1");
return SUCCESS;
}
1、从茄型余ActionContext中获取;
2、实现SessionAware接口。
1、从ActionContext中获取:
import java.util.Map;
import com.opensymphony.xwork2.ActionContext;
import com.opensymphony.xwork2.ActionSupport;
public class SessionTestAction extends ActionSupport {
public String execute(租裤) {
ActionContext actionContext = ActionContext.getContext();
Map session = actionContext.getSession();
session.put("USER_NAME", "Test User");
return SUCCESS;
}
}
2、实现SessionAware接口:
[java] view plaincopyprint?
import java.util.Map;
import org.apache.struts2.interceptor.SessionAware;
import com.opensymphony.xwork2.ActionSupport;
public class SessionTest1Action extends ActionSupport implements SessionAware
{
private Map session;
public void setSession(Map session) {
this.session = session;
}
public String execute(颤滚) {
this.session.put("USER_NAME", "Test User 1");
return SUCCESS;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询