首页 > 代码库 > spring in action小结3 运行时值注入

spring in action小结3 运行时值注入

装配属性的方法1)使用Environment 相关方法检索。2)解析属性占位符 3) spring表达式语言

1. Environment常用方法

String getProperty(String key);
String getProperty(String key, String defaultValue);
<T> T getProperty(String key, Class<T> targetType);
<T> T getProperty(String key, Class<T> targetType, T defaultValue);

 

2. 占位符使用方法在配置文件中${ ... } 如果是扫描方式或者自动装配使用@Value注解

如果要使用占位符,需要配置 PropertySourcesPlaceholderConfigurer 

@Bean
    public PropertySourcesPlaceholderConfigurer placeholderConfigurer(){
        return new PropertySourcesPlaceholderConfigurer();
    }

 

spring in action小结3 运行时值注入