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在我的屬性文件,將檢索豆後反映這種變化?