Struts 1.3 ActionErrors访问

时间:2011-11-23 13:09:05

标签: struts request

在我的ActionForm中,我有验证方法:

public ActionErrors validate(ActionMapping mapping, HttpServletRequest request){

    ActionErrors errorList = new ActionErrors();
    errorList.add("myError", new ActionMessage("this is my error"));
    return errorList;
}

然后流程将返回到页面form.jsp。

我想从我的form.jsp页面访问该错误,但是使用JSTL的EL而不是 html:错误 标签。 我知道errorList存储为请求范围的属性,但我需要属性的确切名称。你能告诉我们在请求中存储的errorList名称是什么吗? 谢谢!

1 个答案:

答案 0 :(得分:2)

ERROR_KEY in Globals;它的值是"org.apache.struts.action.ERROR"