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

Posted pclover11

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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 运行时值注入的主要内容,如果未能解决你的问题,请参考以下文章

spring in action小结2

spring in action第一章小结1

Spring4 In Action-3.5.1-@PropertySource运行时注入值

spring-运行时值注入

rails activesupport 通知 - 错误的数据库运行时值

Spring实战bean装配的运行时值注入——属性占位符和SpEL