StrutsActionContext
正在null
测试中。
使用 Struts2 JUnit 插件我有以下测试:
public class MainActionIT extends StrutsJUnit4TestCase
{
@Test
public void testAction() {
Map<String, Object> application = new HashMap<String, Object>();
application.put("options","home");
ActionContext.getContext().put("application",application);
ActionProxy proxy = getActionProxy("/home");
String result = proxy.execute();
}
}
两个相关的类如下:
public class MainAction extends BaseAction
{
@Action(value = "/home", results = {@Result(name = "success", location = "home.jsp")})
public String getHome()
{
Map options = getHomeOptions();
return SUCCESS;
}
}
public class BaseAction extends ActionSupport
{
public Map getHomeOptions()
{
return ActionContext.getContext().get("application").get("options");
}
}
我正在尝试"application"
用ActionContext
.HashMap
值是在测试中设置的,但是一旦代码在BaseAction
值中执行,则null
. 这里有类似的问题(链接),但在我的情况下答案不正确。
是否有不同ActionContext
的被创造?如果是这样,如何将变量传递给BaseAction
?