본문 바로가기
[Spring]/Annotation

@NotNull, @NotBlank, @NotEmpty 차이

by 황원용 2022. 11. 17.
728x90

@NotNull

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

type 관계 x

@NotEmpty 

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

int, long ,Interger 등 x

@NotBlank

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

String만 허용

728x90