Spring Boot Configuration Annotation Processor not configured

出现的问题

  • 在SpringBoot程序中配置从application.yml文件获取数据为自定义对象封装数据时,添加读取配置文件注解后出现警告。
  • 此警告不影响程序运行,但是看着很不爽。

content-331

原因分析

  • 根据警告内容得知,Configuration Annotation Processor这个东西没有配置才导致此警告。

解决方案

  • 简单,把Configuration Annotation Processor配上就好了。
  • 那这个要在哪配呢,在pom.xml文件中添加以下依赖就可以了。

content-332

  • 可以看到,已经不标红了。

content-333