用法
1.@Value(“${xxxx}”)
注解从配置文件读取值的用法,也就是从application.yaml
文件中获取值。
比如存在application.yaml文件,配置内容如下:
user:
userName: xiaozhou
sex: 女
age: 18
在使用上述配置文件时,可以直接@Value(“${user.userName}”)
等等。
如果@Value(“${user.userName:xiaosun}”)
,指定了name的值为xiaosun,当从配置文件中获取不到userName时,则userName值为xiaosun
2.常量注入
@Value("xiaozhou")
privat String name;
表明name的值是xiaozhou。
//常量
@Value("#{1}")
private int constant;
//从属性源取值
@Value("${test.name}")
private String name;
//从属性源取值
@Value("${test.name2: defaultname}")
private String namedefault;
//从容器中获取bean的的属性值
@Value("#{developerProperty.name}")
private String dname;
//从指定属性源获取属性值(jvm属性)
@Value("#{systemProperties['spring.application.json']}")
private String systemPropertiesjson;
//从指定属性源获取属性值(系统环境属性源)
@Value("#{systemEnvironment['HOME']}")
private String systemEnvironmentHOME;
//从指定属性源获取属性值 默认值
@Value("#{systemEnvironment['HOME22']?:'default'}")
private String systemEnvironmentHOMEdefault;
//获取随机值
@Value("${random.int.5,100;}")
private Integer randomint;