import javax.validation.constraints.Size
@Size는 연결된 문자열의 길이가 min/max에 맞게 유효한지 확인하는 Bean Validation 어노테이션이다.
import org.hibernate.validator.constraints.Length
@Length는 Hibernate Validation 어노테이션이며 @Size와 같은 의미이다.
@Column은 JPA 어노테이션이며 스키마 생성 툴에서 관련 SQL Column 길이를 설정하는 데 사용된다.
'JAVA && Spring' 카테고리의 다른 글
[JAVA] 자바 정규식 사용해서 특수분자 치환할 때 에러 (0) | 2022.06.17 |
---|---|
@Transactional 작동 안 할 때 확인해봐야 할 것 (0) | 2021.08.25 |
@Pattern reqexp 로 인한 gradle build Error (0) | 2021.08.25 |
Custom javax validation constraints, 동적으로 Class 레벨의 validate 및 Custom 에러 메시지 (field, message) (0) | 2021.08.25 |
Maven과 Gradle의 차이 (0) | 2021.08.20 |