转载自http://blog.csdn.net/classicer/article/details/50921590
为了大家更好地理解,下面让我们看下这些注解都是怎么定义的(在version 4.1中):
1、@NotNull:
定义如下:
这个类中有一个isValid方法是这么定义的:
对象不是null就行,其他的不保证。
2、@NotEmpty:
定义如下:
也就是说,@NotEmpty除了@NotNull
之外还需要保证@Size(min=1),这也是一个注解,这里规定最小长度等于1,也就是类似于集合非空。
3、@NotBlank:
类似地,除了@NotNull之外,还有一个类的限定,这个类也有isValid方法:
有意思的是,当一个string对象是null时方法返回true,但是当且仅当它的trimmed length等于零时返回false。即使当string是null时该方法返回true,但是由于@NotBlank还包含了@NotNull,所以@NotBlank要求string不为null。
给大家一些栗子帮助理解记忆:
-
String name = null;
@NotNull
: false
@NotEmpty
: false
@NotBlank
: false -
String name = "";
@NotNull
: true
@NotEmpty
: false
@NotBlank
: false -
String name = " ";
@NotNull
: true
@NotEmpty
: true
@NotBlank
: false -
String name = "Great answer!";
@NotNull
: true
@NotEmpty
: true
@NotBlank
: true