Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- git 연동
- recursion example
- 피보나치함수 예제
- java.sql.SQLSyntaxErrorException
- 해외주식 양도세 신고
- bfs 미로탐색 java
- 홈택스 해외주식 양도세
- 해외증권 양도세 한국투자증권
- javascript 자동완성
- katalon
- 주식 양도세 신고방법
- katalon 사용법
- js 자동완성
- 재귀 예제
- katalon 자동화
- katalon xpath
- tomcat log
- 한국투자증권 양도세 신고
- 테스트 자동화
- 최대공약수 예제
- 피보나치 예제
- 국세청 해외주식 양도세 신고방식
- 한국투자증권 해외주식 양도세
- CSTS 폭포수 모델
- Katalon Recorder 사용법
- 재귀함수 예제
- 피보나치함수
- katalon 비교
- 톰캣 실시간 로그
- oracle group by
Archives
- Today
- Total
엄지월드
@Valid import 에러 본문
@Valid를 사용하려고 하니, 자동으로 import가 안되는 현상이 있었다.
그래서 직접 import javax.validation.Valid; 를 입력해주었지만, 그래도 에러가 나고 있었다.
찾아본 결과, build.gradle에서 implementation이 안되고 있어서 추가해주니 정상 작동하는 것을 확인할 수 있었다.
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-validation'
}
전체 build.gradle 내용
plugins {
id 'org.springframework.boot' version '2.6.4'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
}
group = 'com.account'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.springframework.boot:spring-boot-starter'
implementation 'org.redisson:redisson:3.17.1'
implementation ('it.ozimov:embedded-redis:0.7.3'){
exclude group: "org.slf4j", module: "slf4j-simple"
}
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
compileOnly 'org.projectlombok:lombok'
runtimeOnly 'com.h2database:h2'
annotationProcessor 'org.projectlombok:lombok'
implementation 'org.projectlombok:lombok:1.18.22'
implementation 'org.springframework.boot:spring-boot-starter-web'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
tasks.named('test') {
useJUnitPlatform()
}
'java > Spring' 카테고리의 다른 글
JPA (0) | 2022.08.04 |
---|---|
Parameter 0 of constructor in com.myapp.lms.component.MailComponents required a bean of type 'org.springframework.mail.javamail.JavaMailSender' that could not be found. 에러 (0) | 2022.08.03 |
H2 DB 생성 에러 해결 방법(org.h2.jdbc.JdbcSQLNonTransientConnectionException) (0) | 2022.07.20 |
spring boot 프로젝트 생성 방법 (0) | 2021.04.25 |
Intellij gradle 에러 (0) | 2021.03.27 |
Comments