Spring Boot 自定义配置yml不提示

2020-05-27  本文已影响0人  steamed_bun

使用@ConfigurationProperties实现自定义配置的时候,有两个问题:

  1. 在配置类上面提示Spring Boot Configuration Annotation Processor not configured
  2. 在yml中不提示可以配置的字段
    解决方法:其实点击Open Documentation...就会跳到官方文档
    就会提示要导入
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-configuration-processor</artifactId>
    <optional>true</optional>
</dependency>

这样第一个问题就消失了,但是yml依然不会提示,因为需要先运行一下项目,然后yml里面就会提示了,也可以直接跳转到对应的文件中。(我未找到让yml可以在未运行之前就提示的方法,如果有大佬会,麻烦指点一下啦(*^_^*)

上一篇下一篇

猜你喜欢

热点阅读