浏览 3361 次
该帖已经被评为新手帖
|
|
---|---|
作者 | 正文 |
发表时间:2007-02-07
Action Bean 里的: /* 添加错误 */ errors.add(r.getMsg(), new ActionError(r.getMsg())); saveErrors(httpServletRequest, errors); return actionMapping.findForward("failure"); 其中 failure 指向 error.jsp,如下: <action ....> .... <forward name="success" path="/result.jsp"/> <forward name="failure" path="/error.jsp"/> </action> error.jsp 代码片断: <td style="PADDING-left:12px;"> <html:errors/><br> </td> 为什么输出总是空的消息,跟踪代码,错误对象已经生成在ActionErrors集合里了。 是不是还有其他的设置? 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |
发表时间:2007-02-07
其它的struts标记能正常显示吗
|
|
返回顶楼 | |
发表时间:2007-02-07
其他的Struts标签都能正常显示,例如:
<html:button property="isee" styleClass="button" onclick="javascript:history.go(-1);"><bean:message key="gis9.oktext"/></html:button> 都能够正常显示。 |
|
返回顶楼 | |