[Spring]/Annotation

@NotNull, @NotBlank, @NotEmpty 차이

팡펑퐁 2022. 11. 17. 01:35
728x90

@NotNull

Null   허용 x 
"" 허용
" "  허용

type 관계 x

@NotEmpty 

Null   허용 x 
"" 허용 x
" "  허용

int, long ,Interger 등 x

@NotBlank

Null   허용 x 
"" 허용 x
" "  허용 x

String만 허용

728x90