@ConfigurationProperties Spring Boot Configuration Annotation Processor not found in classpath

前端 未结 13 1059
太阳男子
太阳男子 2021-02-02 05:06

I try to make completion for custom properties in Spring Boot.

I tried to create a simple project via IntelliJ IDEA 2016.3:

  1. Created a new G
13条回答
  •  南方客
    南方客 (楼主)
    2021-02-02 05:26

    For Kotlin projects, the working configuration since Gradle 4.6 is using annotation processor

    apply plugin: "kotlin-kapt"
    
    dependencies {
        kapt("org.springframework.boot:spring-boot-configuration-processor:$springBootVersion")
        compileOnly("org.springframework.boot:spring-boot-configuration-processor:$springBootVersion")
    }
    

提交回复
热议问题