✔ 회원가입 시 Null 값 허용하고 싶지 않을 때
@NotNull
NotNull 은 null 만 허용하지 않는다.
따라서 "" , " " 같이 빈 값은 허용한다.
@NotEmpty
Not Empty 는 null 과 ""를 허용하지 않는다.
따라서 " " 와 값은 빈 값은 허용한다.
@NotBlank
NotBlank 는 null, "", " " 모두 허용하지 않는다.
✔ 참고
https://sanghye.tistory.com/36
'개발 > SpringBoot' 카테고리의 다른 글
[오류/해결] Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. (0) | 2022.08.07 |
---|---|
Spring WebClient / objectMappper (0) | 2022.06.27 |
[SpringBoot] application.yml - h2 database (0) | 2022.06.03 |
@Autowired 필드 주입 , private final 생성자 주입 차이 (0) | 2022.05.31 |
[해결] 스프링 BeanCreationException:, org.hibernate.AnnotationException 에러 (0) | 2022.03.11 |