springboot @ConfigurationProperties
Posted yangfei969
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot @ConfigurationProperties相关的知识,希望对你有一定的参考价值。
Spring Boot 提供了一种方式 --类型安全的bean,能够根据类型校验和管理application中的bean.
继续使用author做例子。配置放在author.properties文件中。属性必须命名规范才能绑定成功。
上例中我们用@ConfigurationProperties
注解就可以绑定属性了。ignoreUnknownFields = false
告诉Spring Boot在有属性不能匹配到声明的域的时候抛出异常。开发的时候很方便! prefix
用来选择哪个属性的prefix名字来绑定。
请注意setters 和 getters 需要在@ConfigurationProperties
bean中创建.
以上是关于springboot @ConfigurationProperties的主要内容,如果未能解决你的问题,请参考以下文章
Springboot@Configuration和@Bean详解
springboot之additional-spring-configuration-metadata.json自定义提示