如何在struts 2中手动验证数据
在 struts 2 中,在哪里以及如何实现 validate(){}
方法来验证表单上的数据,请帮助我,提前致谢。
where and how to implement the validate(){}
method for validating the data on the form, in struts 2, please help me, Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我明白了,验证方法在 ActionSupport 类中定义,我们应该在 Action 类中重写它(首先我们应该扩展 ActionSupport 类),如下所示,
并且您还应该在 strus.xml 中定义您的操作,如下
所示
/Login.jsp
这个标签是 imp bcoz,如果不添加这个标签,过滤器调度程序将不会知道如果验证错误要渲染哪个页面发生。I got it, the validate method is delcared in the ActionSupport class and we should override it in our Action class (First we should extend the ActionSupport Class) as follows,
and also you should define your action in strus.xml as follows
here
<result name="input">/Login.jsp</result>
this tag is imp bcoz, if dont add this tag the filter dispathcer, wont come to know which page to render if validation-error occur.