今天在复习Struts时,才发现在Struts1.1版本以前,对ActionForm的validate方法调用时,ActionErrors的里面只能这样写:
ActionErrors error = new ActionErrors();
error.add("name",new ActionErrors("reg.error.name.missing"));
在1.2时面就可以使用:
error.add("name",new ActionMessage("reg.error.name.missing"));
当时我没注意版本,所以就不停出错!呵呵!