에러 메시지
build.gradle 초기 설정 시
dependencies {
compile('org.springframework.boot:spring-boot-starter-web')
testCompile('org.springframework.boot:spring-boot-starter-test')
}
하기와 같이 에러 발생
Could not find method compile() for arguments
[org.springframework.boot:spring-boot-starter-web] on object of type
org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.
해결 방법
1. Gradle 버전 확인
- compile, testCompile 메서드가 Deprecated됨
2. Gradle ver.7일 경우
- compile ➡ implementation
- testCompile ➡ testImplementation
'Error & Exception' 카테고리의 다른 글
[Java] @Transactional(readOnly = true) (0) | 2021.12.09 |
---|---|
[Tomcat] 404 에러 or Whitelabel Error Page (0) | 2021.12.08 |
[Java] actual and formal argument lists differ in length (0) | 2021.12.02 |
[Tomcat] 톰캣 서버 에러 발생 원인 & 해결책 (0) | 2021.11.29 |
[Tomcat] java.net.BindException : Address already in use (0) | 2021.11.23 |
댓글