그래들 빌드 실패: 주 클래스 이름이 구성되지 않아 확인할 수 없습니다. 저는 이 가이드를 따라 봄과 RESTful 웹 서비스를 구축하고 있습니다.그래들을 이용해 앱을 만들고 있는데 빌드가 실패하고 있습니다. 윈도우 10 기계에서 "build gradle" 명령어를 사용했습니다. 그라들 코드는 다음과 같습니다. buildscript { repositories { mavenCentral() } dependencies { classpath("org.springframework.boot:spring-boot-gradle-plugin:2.1.6.RELEASE") } } apply plugin: 'java' apply plugin: 'eclipse' apply plugin: 'idea' apply plugin: ..