解决Spring Boot Configuration Annotation Processor not configured的问题

1. 问题描述

使用@ConfigurationProperties()注解时,IDE突然爆出警告Spring Boot Configuration Annotation Processor not configured,好在不影响项目运行,强迫症患者表示很不舒服。

2. 问题解决

1. 引入configuration-processor的依赖

<dependency>
    <groupId>org.springframework.bootgroupId>
    <artifactId>spring-boot-configuration-processorartifactId>
    <optional>trueoptional>
dependency>

2. 此时可能会出现Re-run Spring Boot Configuration Annotation Processor to update generated metadata的提示,此时只需要隐藏提示或者重新编译项目即可。

你可能感兴趣的:(spring,boot,java,前端)