목록java spring (2)
차밍이
[Spring-boot] Gradle Could not find method compile() 오류 해결 방법
오류 메세지 Could not find method compile() for arguments Count not find method compile() 에러가 계속 발생되는 문제가 발생했다. 오류 해결 방법 stackoverflow 에 검색했더니 다음과 같이 나왔다. compile, runtime, testCompile, and testRuntime 는 Gradle 4.10 부터 없어졌다고 한다. 대신 implementation, runtimeOnly, testImplementation, and testRuntimeOnly를 사용하라고 한다. 원문 Note that the compile, runtime, testCompile, and testRuntime configurations introduced b..
Java/Spring
2022. 7. 20. 20:02
[Spring-boot] VScode에서 Lombok 적용하기
목차 1. 마켓플레이스에서 설치하기 VScode의 Extensions에 들어가 Lombok을 설치한다. 2. gradle.build 파일에 lombok을 dependencies에 추가한다 dependencies { compile('org.springframework.boot:spring-boot-starter-data-jpa') compile('mysql:mysql-connector-java') compile('org.projectlombok:lombok') #
Java/Spring
2022. 7. 19. 22:41