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 | 31 |
Tags
- js to ts
- 리덕스장바구니
- 공부
- 파이썬
- Java
- C++
- memory
- OS
- error
- codeup
- 프로그래머스
- 토이프로젝트
- 코드업
- 분할메모리할당
- Operating System
- 협업
- 알고리즘
- 기초100제
- 자료구조
- react
- Redux
- 정렬
- react-redux
- 일상
- 스프링
- Spring
- CPU 스케줄링
- 백준
- 타입스크립트
- web
Archives
- Today
- Total
감자튀김 공장🍟
[Spring Boot] could not find method compile() for arguments 해결 방법 본문
JAVA/SpringBoot
[Spring Boot] could not find method compile() for arguments 해결 방법
Potato potage 2022. 10. 22. 22:16반응형
다른 분의 블로그를 보면서 블로그 개발 중에 could not find method compile() for arguments 라는 오류를 만났다.
찾아보니 compile, runtime, testCompile, testRuntime은 Gradle 7.0(2021.4.9)부터 삭제되었다고 한다.
그리고 해당 명령들은 implementation, runtimeOnly, testImplementation, testRuntimeOnly으로 대체되었다.
해결 방법
compile("org.mybatis.spring.boot:mybatis-spring-boot-starter:1.3.2")
이 부분에서 오류가 났기 때문에 compile을 implementation으로 바꿔주면 해결된다.
implementation("org.mybatis.spring.boot:mybatis-spring-boot-starter:1.3.2")
참고
반응형
'JAVA > SpringBoot' 카테고리의 다른 글
[Spring Boot] No more pattern data allowed after {*...} or ** pattern element 에러 수정 (0) | 2022.10.22 |
---|
Comments