有时候我们需要在 application.yaml
文件中自定义配置,在程序中通过属性名映射过去,但是有时候定义错误的属性名会导致配置不生效。
属性名不能是is
开头,例如属性名为isLog
,你在配置文件中不管怎么给这个属性设值都不会生效,需要改成log即可。
我使用spring boot
版本:
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.6.RELEASE</version>
<relativePath/>
</parent>