当前位置: 代码迷 >> Java Web开发 >> <html:errors>有关问题
  详细解决方案

<html:errors>有关问题

热度:341   发布时间:2016-04-17 13:17:36.0
<html:errors>问题
jsp代码:
<table   border= "1 ">
<tr>
<td   colspan= "2 "> <html:errors   /> </td>
</tr>
</table>

Form
public   ActionErrors   validate(ActionMapping   mapping,
HttpServletRequest   request){
ActionErrors   errors=new   ActionErrors();
if(username==null){
errors.add(ActionMessages.GLOBAL_MESSAGE,new   ActionMessage( "hello.login.notype "));
}
return   errors;
}

当点击触发action.do的时候 <html:errors> 怎么也显示不出来,为什么?请高人指点!

------解决方案--------------------
<html:errors property= "ActionMessages.GLOBAL_MESSAGE对应的值 " />
------解决方案--------------------
save一下.
  相关解决方案