美文网首页
验证器使用

验证器使用

作者: 薛云龙 | 来源:发表于2016-04-05 16:33 被阅读17次

    先奉上简易demo一份:

    Validate.java
    public class Validate extends ActionSupport {
    private String name;    
    private int age;
    public String getName() {        return name;    } 
    public void setName(String name) {        this.name = name;    }
    public int getAge() {        return age;    }
    public void setAge(int age) {        this.age = age;    }
    
    public String execute(){    return "success";    }
     }
    Vlidate-validtion.xml
    

    相关文章

      网友评论

          本文标题:验证器使用

          本文链接:https://www.haomeiwen.com/subject/bujplttx.html