728x90
- (build.gradle 파일) Gradle 4 버전에서 정상동작을 하였던 아래 코드가 오류가 났을 때
dependencies {
compile('org.springframework.boot:spring-boot-starter-web')
testCompile('org.springframework.boot:spring-boot-starter-test')
}
- 아래와 같이 compile -> implementation, testCompile -> testImplementation 으로 바꾸면 오류가 해소된다.
dependencies {
implementation('org.springframework.boot:spring-boot-starter-web')
testImplementation('org.springframework.boot:spring-boot-starter-test')
}
- 구글 검색 결과 Gradle 4 -> 7로 바뀌면서 문법이 바뀌어서 그렇다는 것을 알 수 있었다.
참고1 : https://github.com/jojoldu/freelec-springboot2-webservice/issues/719
728x90
'Spring' 카테고리의 다른 글
[마이바티스] @Alias 어노테이션 (0) | 2022.03.22 |
---|---|
JUnit 4 Test 에서 get 메소드 에러 관련 (0) | 2022.03.01 |
스프링 시큐리티(Spring Security) 설정 (0) | 2022.02.17 |
Spring 필드 주입 vs 생성자 주입(win) (0) | 2022.02.15 |
순수 Java에서 Spring으로의 첫 전환! (0) | 2022.02.15 |