본문 바로가기
Spring

[Spring] Annotation(유효성 검사)

by NamGH 2023. 11. 20.
Annotation 유효성 검사의 종류
@NotEmpty 누락 검사
@NotNull 누락 검사
@NotBlank 누락 검사
@Min 최솟값 유효성 검사
@Max 최대값 유효성 검사
@Length  길이 유효성 검사
@Size 길이 유효성 검사
@Pattern 패턴검사(영어,숫자)

 

 

input태그에서 사용가능한 어노테이션
타입 설명
text @NotBlank
@NotEmpty
radio
checkbox
@NotNull
@NotEmpty
select @NotBlank
@NotEmpty
@Length
@Size

'Spring' 카테고리의 다른 글

[Spring] Servlet  (1) 2023.11.03