ActionContext.getContext() returns null 在 Struts 中使用 Session 2
ActionContext.getContext() returns null using Session in Struts 2
我正在尝试在 Struts 2:
中使用 Session
private Map<String, Object> session = ActionContext.getContext().getSession();
但是我收到这个错误:
Exception in thread "main" java.lang.NullPointerException: Cannot invoke
"com.opensymphony.xwork2.ActionContext.getSession()" because the return value of
"com.opensymphony.xwork2.ActionContext.getContext()" is null
我尝试使用 Struts 的 SessionMap
,但仍然收到相同的错误消息。我已经尝试更改 struts-core
库,也尝试了 Google 的一些解决方案,但仍然没有解决这个问题。
我正在尝试在 Struts 2:
中使用Session
private Map<String, Object> session = ActionContext.getContext().getSession();
但是我收到这个错误:
Exception in thread "main" java.lang.NullPointerException: Cannot invoke
"com.opensymphony.xwork2.ActionContext.getSession()" because the return value of
"com.opensymphony.xwork2.ActionContext.getContext()" is null
我尝试使用 Struts 的 SessionMap
,但仍然收到相同的错误消息。我已经尝试更改 struts-core
库,也尝试了 Google 的一些解决方案,但仍然没有解决这个问题。