标签:表达式 属性 code 使用 new 方法 str 方式 environ
装配属性的方法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(); }
标签:表达式 属性 code 使用 new 方法 str 方式 environ
原文地址:http://www.cnblogs.com/zhaopengcheng/p/7045028.html