...

[Spring Boot] @NotEmpty 어노테이션이 import 되지 않을 때 본문

이것저것/오류 해결

[Spring Boot] @NotEmpty 어노테이션이 import 되지 않을 때

gi2 2022. 4. 17. 14:44

@NotEmpty 어노테이션은 javax.validation.constraints 패키지에 존재한다. 

스프링 부트 버전에 따라서 이 패키지가 포함되어있을 수도, 아닐 수도 있다. 

따라서 @NotEmpty 어노테이션이 import되지 않을 때는 

 

build.gradle dependencies에 

implementation 'org.springframework.boot:spring-boot-starter-validation'

을 추가해준다. 

Comments