Java Bean Validation (Jakarta Bean Validation specification)

Roeniss Moon·2020년 11월 30일
0

스프링 수첩

목록 보기
1/3

reference : https://beanvalidation.org/2.0/spec/

DTO의 필드에 다는 경우만 봤는데, 그 외에 다양하게 활용 가능한 것 같다.

Built-in Constraint definitions

@Null
@NotNull
@AssertTrue
@AssertFalse
@Min
@Max
@DecimalMin
@DecimalMax
@Negative
@NegativeOrZero
@Positive
@PositiveOrZero
@Size
@Digits
@Past
@PastOrPresent
@Future
@FutureOrPresent
@Pattern
@NotEmpty
@NotBlank ("not Whitespace")
@Email

+) notNull < notEmpty < notBlank

profile
기능이 아니라 버그예요

0개의 댓글