[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
반응형
'Web > Spring' 카테고리의 다른 글
[Spring] java.lang.IllegalStateException: Found multiple @SpringBootConfiguration annotated classes (0) | 2020.11.12 |
---|---|
[Spring] Spring Boot에서 WAS 변경(tomcat을 undertow 변경하기) (0) | 2020.08.21 |
[Spring] Spring MVC (0) | 2020.07.24 |
[디자인패턴] 템플릿 메소드 패턴 (0) | 2020.07.20 |
[Spring] Gradle 에서 Lombok이 null 이 될때 확인! (0) | 2020.06.17 |
블로그의 정보
What doing?
Roel Downey