关于ActionContext.getContext().getSession()返回null
在xwork2.
1.6
版本中使用以下这段代码是没有错误的。
ActionContext ctx = ActionContext.getContext();
Map session = ctx.getSession();
session.put(String, Object);
但在xwork2.
0.7版本
中就会出现
null
错误;
解决的方法:
Map session =
new
HashMap();
ActionContext.getContext().setSession(session);
session.put(String, Object);