如何在struts 2中手动验证数据

发布于 2024-09-08 14:34:22 字数 78 浏览 2 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

看轻我的陪伴 2024-09-15 14:34:22

我明白了,验证方法在 ActionSupport 类中定义,我们应该在 Action 类中重写它(首先我们应该扩展 ActionSupport 类),如下所示,

public class Login extends ActionSupport {
//execute method goes here 
//getter/setters goes here
@Override
public void validate() {
super.validate();
    System.out.println("User Name " + getUserName());
    if(getUserName().length()==0)
         addFieldError("userName", "User Name Required");

    }

}

并且您还应该在 strus.xml 中定义您的操作,如下

<action name="DemoLogin" class="com.demo.Login">
    <result name="SUCCESS">/LoginSuccess.jsp</result>
    <result name="ERROR">/LoginError.jsp</result>
    <result name="input">/Login.jsp</result>
</action>

所示 /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,

public class Login extends ActionSupport {
//execute method goes here 
//getter/setters goes here
@Override
public void validate() {
super.validate();
    System.out.println("User Name " + getUserName());
    if(getUserName().length()==0)
         addFieldError("userName", "User Name Required");

    }

}

and also you should define your action in strus.xml as follows

<action name="DemoLogin" class="com.demo.Login">
    <result name="SUCCESS">/LoginSuccess.jsp</result>
    <result name="ERROR">/LoginError.jsp</result>
    <result name="input">/Login.jsp</result>
</action>

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文