首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > CSS >

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

2012-12-22 
struts初学者,不会使用&lthtml:errors /&gt点击下面标题查看本文完整版:struts初学者,不会使用

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"     

热点排行