2012-06-07 61 views
0

我想知道我的應用程序上下文中的bean是否動態綁定。特別是,如果我有spring - 應用程序上下文中的bean是否動態綁定到PropertyPlaceholderConfigurer?

<bean id="mySpringRemoteService" 
     class="org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean"> 
     <property name="serviceInterface" 
      value="foo.bar.services.mySpringRemoteService" /> 
     <property name="serviceUrl" value="${spring.remote.service.url}"/> 
</bean> 

<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> 
     <property name="location" value="classpath:some.properties"/> 
    </bean> 

如果我更改屬性的服務URL在我的屬性文件,將檢索豆後反映這種變化?

回答

0

嗯,我認爲你很容易有一個嘗試自己。

答案是否定的(除非春天的行爲3.X改變)

我相信你都有執行配置文件運行時的更新行爲。看看Apache Commons配置。

相關問題