작성한 질문수
[개정판 2023-11-27] Spring Boot 3.x 를 이용한 RESTful Web Services 개발
유효성 체크를 위한 Validation API 사용
작성
·
1.3K
0
답변 2
8
지나가는 도중에 답글 드려요.
SpringBoot 2.3 이 후 부터 starter web에 validation이 빠져서 그럽니다.
pom.xml
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-validation</artifactId></dependency>
추가 해보세요.
2
안녕하세요, 이도원입니다.
아래 게시글도 참조해 주시기 바랍니다.
https://www.inflearn.com/questions/326862
감사합니다.