spring中的@Value注解

三种使用
@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
spring中的@Value注解

上一篇:springboot配置文件以及引入外部资源


下一篇:12. spring-容器: @Value, @PropertySource详解