在Struts2里,如果需要在Action中使用session,可以通过下面两种方式得到
1.通过ActionContext class中的方法getSession得到
2.Action实现org.apache.struts2.interceptor.SessionAware接口的方式来对session进行操作
下面先看一个采用第一种方式,在action中得到session的例子
packages2.ex.action;
importjava.util.Map;
importcom.opensymphony.xwork2.ActionContext;
importcom.opensymphony.xwork2.ActionSupport;
public classSessionTestActionextends ActionSupport{
}
在这个例子中,通过ActionContext得到session,并往session里放置一个key为USER_NAME,值为TestUser的内容。
下面是一个实现org.apache.struts2.interceptor.SessionAware接口来对session操作的例子
packages2.ex.action;
importjava.util.Map;
importorg.apache.struts2.interceptor.SessionAware;
importcom.opensymphony.xwork2.ActionSupport;
public class SessionTest1Action extends ActionSupportimplements SessionAware{
}
在这个例子中实现了接口SessionAware中的setSession方法。
上面两种方式都可以得到session,能实现的功能都是一样的。
这里推荐通过第二种方式来使用session,原因是便于做单体测试,用第二种方式,只需要构造一个Map就可以对actionclass进行单体测试了。
在一个项目中可能会有很多action都需要用到session,如果每个action都来实现org.apache.struts2.interceptor.SessionAware这个接口,可能会显得比较麻烦,所以建议作一个抽象的BaseAction类来实现org.apache.struts2.interceptor.SessionAware接口,以后所有的action只要继承这个BaseAction就可以了。
下面是一个如何在JSP中使用session的例子。
<%@ pagecontentType="text/html;charset=UTF-8"%>
<%@pagepageEncoding="utf-8"%>
<%@taglibprefix="s"uri="/struts-tags"%>
<html>
<head>
<title>SessionTest</title>
</head>
<body>
</body>
</html>
Cookie:略写
ServletActionContext.getResponse().addCookies(key,valuue); //写入Cookie