build.gradle 을 다음과 같이 설정하니 exception 발생 원인: gralde 7 버전에서는 compile -> implementation 으로 사용해야함 buildscript { ext { springBootVersion = "2.1.9.RELEASE" } repositories { mavenCentral() jcenter() } dependencies { classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}") } } apply plugin: 'java' apply plugin: 'eclipse' apply plugin: 'org.springframework.boot' apply plugin: ..