等效的Struts2 - actionError.get()。hasNext()

时间:2017-03-20 13:36:55

标签: java struts2

Struts2中对于动作类的以下行的等价物是什么:

if(actionError.get("myError").hasNext()){
....
}

1 个答案:

答案 0 :(得分:1)

ActionSupportgetActionErrors()中有一个方法可以与代码一起使用

getActionErrors

Collection<String> getActionErrors()

Get the `Collection` of Action-level error messages for this action. 
     

不应在此处直接添加错误消息,作为实现   可以自由地返回新的CollectionUnmodifiable Collection

Returns:
    Collection of String error messages

if (getActionErrors().contains("myError")) {
  //your code here
}