在Kotlin中,使用gradle在Intellij上运行Spring Boot的bootRun任务,我得到以下错误:

 BUILD FAILED

 Total time: 0.085 secs
 Could not set unknown property 'addResources' for task ':bootRun'
 of type org.springframework.boot.gradle.tasks.run.BootRun.

我正在使用kotlinVersion ='1.1.4-3',springBootVersion ='2.0.0.M3',并且我的bootrun任务在gradle.build中如下所示
bootRun
    {
         addResources = true
    }

我的bootRun可以正常运行,而无需调整bootRun任务

最佳答案

您正在使用Spring Boot 2.0,其中addResources属性不再存在。相反,您需要将sourceResources属性设置为要使用的源集。通常是sourceSets.main。这在plugin’s documentation中进行了描述。

07-26 02:00