美文网首页
Spring Boot 自定义配置yml不提示

Spring Boot 自定义配置yml不提示

作者: steamed_bun | 来源:发表于2020-05-27 16:14 被阅读0次

    使用@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可以在未运行之前就提示的方法,如果有大佬会,麻烦指点一下啦(*^_^*)

    相关文章

      网友评论

          本文标题:Spring Boot 自定义配置yml不提示

          本文链接:https://www.haomeiwen.com/subject/tcnwahtx.html