Springboot实战系列之@Value注解的使用心得
发布网友
发布时间:2022-09-15 22:06
我来回答
共1个回答
热心网友
时间:2023-10-10 17:15
在工作中使用springboot经常有属性注入的场景,下面说一下有默认值和无默认值两种写法的不同
这中是有默认值的写法,默认是分号后的值,这里为true,但是如果在配置文件中(application.properties 或 application.yml)中设置了appCenterRegistered的值,就会按照配置文件中的值。
如在application.properties中设置
app.center.registered:false
这样appCenterRegistered的值会为false
demo
这种是无默认值的写法,这种写法要求必须在配置文件(applicaiton.properties或application.yal)中添加该属性的键值对,否则就会报错
Could not resolve placeholder 'app.center.registered' in value "${app.center.registered}