Spring通过注解注入外部配置文件

2019-08-01  本文已影响0人  O_Neal

指定路径

使用 @PropertySource 指定配置文件路径,支持 properties 和 XML 的配置文件,但不支持 yml。

属性赋值

可以用注解 @Value 对属性直接赋值、${}获取配置文件的值、SPEL表达式#{}。

例子

user.properties 的内容

user.username=my name
user.age=24
#user.desc=

配置类

@Component
@PropertySource(value = {"classpath:user.properties"})
public final class UserProperties {
    @Value("name jack")
    private String name;

    @Value("${user.age}")
    private Integer age;

    @Value("#{'${user.username}'?.toUpperCase()}")
    private String username;

    @Value("${user.desc:default desc}")
    private String desc;
}

测试

public class Test {
  public static void main(String[] args) {
    AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(UserProperties.class);
    UserProperties bean = context.getBean(UserProperties.class);

    System.out.println(bean);
  }
}

输出结果

UserProperties(name=name jack, age=24, username=MY NAME, desc=default desc)
上一篇下一篇

猜你喜欢

热点阅读