Struts2中的“验证”之编程式验证

 
1)验证分为:编程式验证、声明式验证。
 
2)“验证”要用到的拦截器:
class="org.apache.struts2.interceptor.validation.AnnotationValidationInterceptor"/>
 
3)实现Action有3种方式,即-->1.pojo;2.实现Action接口;3.继承ActionSupport类
一般我们会选择第三种方式--继承ActionSupport类,而这个 ActionSupport类已经 实现了Validateable、ValidationAware等接口。
 
4)编程式验证
验证步骤:
  <1>重写了Validateable中的validate()方法
<2>ValidationAware中含有方法--》addFieldError(String fieldName,String errorMessage) -->字 段名,错误提示
例:
①用户登录验证
public class UserAction extends ActionSupport implements ModelDriven {
  private User user = new User();
  public User getModel() {
    return this.user;
  }
  @Override
  public void validate() {
    if (this.user.getUname().length()==0) {
      this.addFieldError("uname", "用户名不能为空aaa!");
      this.addFieldError("uname", "用户名不能为空bbb!");  
      
    }
    super.validate();
  }
  public String execute() {
    return  this.success;
  }
}
 
②struts.xml中的配置:
 
 
③在jsp页面中显示错误信息--> 2种方式
<1>使用struts2的表单,会默认自行添加到相应位置,不用自己再进行操作
注意:theme主题不能为simple
<2>


 
 

转载于:https://www.cnblogs.com/gxpblogs/archive/2013/05/10/3072173.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值