美文网首页
Spring通过注解注入外部配置文件

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

作者: O_Neal | 来源:发表于2019-08-01 01:15 被阅读0次

    指定路径

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

    属性赋值

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

    • 直接赋值:@Value("name jack")
    • 读取配置文件:@Value("${user.age}")
    • 指定默认值:@Value("${user.desc:default desc}") 表示如果没有user.desc的配置,则赋值为default desc
    • SPEL表达式:@Value("#{'${user.username}'?.toUpperCase()}") 表示将从配置文件读取的值转为大写,?可以不填,表示如果没有user.username的配置,则忽略

    例子

    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)
    

    相关文章

      网友评论

          本文标题:Spring通过注解注入外部配置文件

          本文链接:https://www.haomeiwen.com/subject/qplxdctx.html