ConfigurationProperties cannot be resolved to a type

pom.xml 中报错之前:

  <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.5.1.RELEASE</version>
    </parent>

更改后:

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.0.2.RELEASE</version>
    </parent>    

估计:版本不支持这个注解。

原文地址:https://www.cnblogs.com/lioa/p/10757874.html