[Spring] Spring Boot 2.3, Web-starter doesn't bring Validation-starter anymore
by Roel Downey728x90
반응형
- 백기선님 유튜브 링크 : youtu.be/cP8TwMV4LjE
- 문서 링크 : https://github.com/spring-projects/spring-boot/wiki/Spring-Boot-2.3-Release-Notes
Spring Boot 2.3 이하 버전에는 Spring Web만 추가하면 Validation이 자동으로 들어온다.
예 ) 2.2.7 버전이다.

Spring Boot 2.3 이상 버전에는 Spring Web만 추가하면 Validation이 들어오지 않는다.
그래서 버전을 낮추거나 의존성을 추가해준다.


<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-validation</artifactId> </dependency>
dependencies { ... implementation 'org.springframework.boot:spring-boot-starter-validation' }
728x90
반응형
블로그의 정보
What doing?
Roel Downey활동하기
What doing?Roel Downey 님의 블로그입니다.