320x100
Execution failed for task ':bootRun'.
> Failed to calculate the value of task ':bootRun' property 'mainClass'.
> Main class name has not been configured and it could not be resolved
어플리케이션 띄울때, main class를 못찾는다고 한다.
// build.gradle.kts
springBoot {
mainClass.set("com.withhamit.chatting.ChattingApplicationKt")
}
mainClass 위치를 명시적으로 지정해준다.
코틀린으로 작성한 경우 자바로 컴파일될때 파일명에 Kt가 붙기 때문에 ChattingApplicationKt와 같이 Kt를 뒤에 붙여줘야한다.
320x100
'Back-End (web)' 카테고리의 다른 글
[Kotlin] Sealed Class (0) | 2021.12.28 |
---|---|
[Spring] 배치 실행 시 'BATCH_JOB_INSTANCE.PRIMARY' 중복 에러 (1) | 2021.11.19 |
[Gradle][Error] Cannot lock execution history cache ... as it has already been locked by this process. (0) | 2021.06.26 |
[kotlin] property, backing field (0) | 2021.02.04 |
[Mono][Feign] 404 error custom throw (0) | 2020.08.16 |
댓글