Spring 多动作控制器验证不起作用
您好,我在我的项目中使用 spring 2.5。我已经使用了验证。我可以调用验证,但问题是验证错误消息未显示在 jsp 页面中。你能给我看一些关于 Multiaction 的例子吗
Hi I am using spring 2.5 in my project. I have used validation. I am able to call the validation but the problem is validation error message is not displaying in jsp page. Can u please show me any example on Multiaction
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您遇到验证错误时,您必须根据您在 JSP 页面上使用的标记将 then 添加到 HttpServletRequest 上的属性。如果您使用了 spring 表单标签,则将这些错误添加到“errors”属性中。否则,将错误设置为用于在 JSP 页面上呈现的名称。
When you have validation errors you have to add then to an attribute on HttpServletRequest as per the tag you have used on your JSP page. If you used spring form tag then add those errors to "errors" attribute. Otherwise set errors to name you have used for rendering on JSP page.