@Value(“#{}”)與@Value(“${}”)的區別

  1. @Value(「#{}」) 表示SpEl表達式通常用來獲取bean的屬性,或者調用bean的某個方法。當然還有可以表示常量

  2. 用 @Value(「${xxxx}」)註解從配置文件讀取值的用法

    一、 @Value(「#{}」)
      1 @Value(「#{}」) SpEL表達式(//blog.csdn.net/ya_1249463314/article/details/68484422
      @Value(「#{}」) 表示SpEl表達式通常用來獲取bean的屬性,或者調用bean的某個方法。當然還有可以表示常量

@RestController  
@RequestMapping("/login")  
@Component  
public class LoginController {  

    @Value("#{1}")  
    private int number; //獲取數字 1  

    @Value("#{'Spring Expression Language'}") //獲取字元串常量  
    private String str;  

    @Value("#{dataSource.url}") //獲取bean的屬性  
    private String jdbcUrl;  

    @Autowired  
    private DataSourceTransactionManager transactionManager;  

    @RequestMapping("login")  
    public String login(String name,String password) throws FileNotFoundException{  
        System.out.println(number);  
        System.out.println(str);  
        System.out.println(jdbcUrl);  
        return "login";  
    }  
}

當bean通過@Value(#{「」}) 獲取其他bean的屬性,或者調用其他bean的方法時,只要該bean (Beab_A)能夠訪問到被調用的bean(Beab_B),即要麼Beab_A 和Beab_B在同一個容器中,或者Beab_B所在容器是Beab_A所在容器的父容器。(拿我上面貼出來的程式碼為例在springMvc項目中,dataSource這個bean一般是在springContext.xml文件中申明的,而loginController這個bean一般是在springMvc.xml文件中申明的,雖然這兩個bean loginController和dataSource不在一個容器,但是loginController所在容器繼承了dataSource所在的容器,所以在loginController這個bean中通過@Value(「#{dataSource.url}」)能夠獲取到dataSource的url屬性)。

 

二、 @Value(「${}」)
//blog.csdn.net/zengdeqing2012/article/details/50736119
//blog.csdn.net/jiangyu1013/article/details/56285984
1.用法
從配置properties文件中讀取init.password 的值。

@Value("${init.password}")  
 private String initPwd;  

2 . 在spring的配置文件中載入配置文件dbconfig.properties :

<!-- 載入配置文件 -->  
   <bean id="configProperties" class="org.springframework.beans.factory.config.PropertiesFactoryBean">  
    <property name="fileEncoding" value="UTF-8"/>  
    <property name="locations">  
        <list>  
            <value>classpath:dbconfig.properties</value>  
        </list>  
    </property>  
</bean>  

或這樣載入

<context:property-placeholder location="classpath:dbconfig.properties" />  

或這樣載入

<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PreferencesPlaceholderConfigurer">  
    <property name="location">  
    <value>dbconfig.properties</value>  
    </property>  
</bean>  

dbconfig.properties 文件:

#MD5  
password.algorithmName=md5  
password.hashIterations=2  
#initpwd  
init.password=admin 

通過@Value(「${}」) 可以獲取對應屬性文件中定義的屬性值。假如我有一個sys.properties文件 裡面規定了一組值: web.view.prefix =/WEB-INF/views/

在springMvc.xml文件中引入下面的程式碼既即以在 該容器內通過@Value(「web.view.prefix)springMvc.xmlspringMvc.xmlbean@Value(web.view.prefix”)獲取這個字元串。需要指出的是,如果只在springMvc.xml引入下面程式碼,只能在springMvc.xml文件中掃描或者註冊的bean中才能通過@Value(“{web.view.prefix}」)獲取這個字元串,其他未在springMvc.xml掃描和定義的bean必須在相應的xml文件中引入下面程式碼才能使用@Value(「${}」)表達式

<!-- 載入配置屬性文件 -->  
    <context:property-placeholder  
        ignore-unresolvable="true" location="classpath:sys.properties" />  

然後再controller文件中通過下面程式碼即可獲取「」/WEB-INF/views/「」這個字元串

@Value("${web.view.prefix}")  
private String prefix;  

 

Tags: