jpa

    [JPA] Entity  Validation - null

    [JPA] Entity Validation - null

    @NotNull 그리고 더 이상 사용되지 않는 @NotEmpty, @NotBlank 구글에서 null 체크해주는 어노테이션을 찾아보면 @NotNull, @NotEmpty, @NotBlank이 나오는데 각 어노테이션 마다 허용해주는 범위는 아래와 같다, @NotNull : null @NotEmpty : null, "" @NotBlank : null, "", " "(공백) 하지만 @NotEmpty, @NotBlank은 Bean Validation 2.0부턴 더 이상 사용되지 않는다. 그렇기 때문에 Hibernate Validator 6.x이상 쓴다면 @NotEmpty, @NotBlank을 사용 할 수 없다. deprecated 이전에는 @NotEmpty, @NotBlank에 @NotNull이 포함되어 있으..