注解式控制器的数据验证、类型转换及格式化——跟着开涛学SpringMVC
http://jinnianshilongnian.iteye.com/blog/1733708
Spring4新特性——集成Bean Validation 1.1(JSR-349)到SpringMVC
http://jinnianshilongnian.iteye.com/blog/1990081
springMVC表单校验+全注解
http://www.cnblogs.com/hiberk/p/5721657.html
spring mvc的validator如何支持String类型的参数
https://segmentfault.com/q/1010000006026986
jsr 303规范:
http://www.ibm.com/developerworks/cn/java/j-lo-jsr303/
hibernate valid用法:
Bean Validation 中内置的 constraint @Null 被注释的元素必须为 null @NotNull 被注释的元素必须不为 null @AssertTrue 被注释的元素必须为 true @AssertFalse 被注释的元素必须为 false @Min(value) 被注释的元素必须是一个数字,其值必须大于等于指定的最小值 @Max(value) 被注释的元素必须是一个数字,其值必须小于等于指定的最大值 @DecimalMin(value) 被注释的元素必须是一个数字,其值必须大于等于指定的最小值 @DecimalMax(value) 被注释的元素必须是一个数字,其值必须小于等于指定的最大值 @Size(max=, min=) 被注释的元素的大小必须在指定的范围内 @Digits (integer, fraction) 被注释的元素必须是一个数字,其值必须在可接受的范围内 @Past 被注释的元素必须是一个过去的日期 @Future 被注释的元素必须是一个将来的日期 @Pattern(regex=,flag=) 被注释的元素必须符合指定的正则表达式 Hibernate Validator 附加的 constraint @NotBlank(message =) 验证字符串非null,且长度必须大于0 @Email 被注释的元素必须是电子邮箱地址 @Length(min=,max=) 被注释的字符串的大小必须在指定的范围内 @NotEmpty 被注释的字符串的必须非空 @Range(min=,max=,message=) 被注释的元素必须在合适的范围内