[springmvc] Validation

Trigger validation by marking a JavaBean parameter as @Valid

  The JavaBean will be passed to a Validator for validation

  The JavaBean will be passed to a Validator for validation

Binding and validation errors can be trapped and introspected by declaring a BindingResult parameter

  Must follow the JavaBean parameter in the method signature

  Errors automatically exported in the model when rendering views

  Not supported with other request parameter types (@RequestBody, etc)

    @RequestMapping("/validate")
public @ResponseBody String validate(@Valid JavaBean bean, BindingResult result) {
if (result.hasErrors()) {
return "Object has validation errors";
} else {
return "No errors";
}
}

JavaBean.java

import java.util.Date;

import javax.validation.constraints.Future;
import javax.validation.constraints.Max;
import javax.validation.constraints.NotNull;

import org.springframework.format.annotation.DateTimeFormat;
import org.springframework.format.annotation.DateTimeFormat.ISO;

public class JavaBean {

@NotNull
@Max(5)
private Integer number;

@NotNull
@Future
@DateTimeFormat(iso=ISO.DATE)
private Date date;

public Integer getNumber() {
return number;
}

public void setNumber(Integer number) {
this.number = number;
}

public Date getDate() {
return date;
}

public void setDate(Date date) {
this.date = date;
}

}




  

转载于:https://www.cnblogs.com/lavieenrose/archive/2012/03/26/2418801.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值