三种使用
@ToString
public class People {
@Value("张三")
private String name;
// SpEl
@Value("#{20-2}")
private int age;
@Value("${people.six}")
private String six;
}
1、value直接赋值
2、SpEl表达式
3、获取环境变量中的值
xml配置环境变量
<context:property-placeholder location="classpath:people.properties"/>
注解配置
@PropertySource(value = {"classpath:/people.properties"}) -多个PropertySource