spring-boot-configuration-processor的作用
Posted xsjzhao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring-boot-configuration-processor的作用相关的知识,希望对你有一定的参考价值。
When using @ConfigurationProperties it is recommended to add 'spring-boot-configuration-processor' to your classpath to generate configuration metadata
SpringBoot默认使用yml
配置文件,使用xml
或properties
作为配置文件时SpriingBooot建议将spring-boot-configuration-processor
添加到类路径生成配置元数据,其余用法和yml
一致。
消除警告,只需要将spring-boot-configuration-processor
依赖添加到pom.xml
。
在denpendencies节点下添加:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
以上是关于spring-boot-configuration-processor的作用的主要内容,如果未能解决你的问题,请参考以下文章