当前位置: 代码迷 >> HTML/CSS >> struts菜鸟,不会使用<html:errors /&gt
  详细解决方案

struts菜鸟,不会使用<html:errors /&gt

热度:613   发布时间:2012-12-22 12:05:06.0
struts初学者,不会使用<html:errors />
点击下面标题查看本文完整版:struts初学者,不会使用<html:errors />

我在试用struts,想在formbean中进行下数据验证(有哪些字段未填的),所以在formbean中:
? public ActionErrors validate(
? ActionMapping mapping,
? HttpServletRequest request)
? {
?
? ActionErrors errors=new ActionErrors();
? if (this.getUsername().length()==0 ¦ ¦
? ? this.getPassword().length()==0 ¦ ¦
? ? this.getPassword2().length()==0 ¦ ¦
? ? this.getOrganize().length()==0 ¦ ¦
? ? this.getRealname().length()==0)
? {
? ? //System.out.print("form bean: must words\n");
? ? errors.add("haha",new ActionError("user.new.mustwords"));
? ? //request.setAttribute(Globals.ERROR_KEY,errors);
? }
? return errors;
? }
?
? 对应的struts-config:
? <action
? ? attribute="NewuserForm"
? ? name="NewuserForm"
? ? input="/webs/user/newuser.jsp"
? ? path="/newuser"     

  相关解决方案