アプリケーション コンテキスト内の Bean が動的にバインドされているかどうかを知りたいです。具体的には、私が持っている場合
<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 のプロパティを変更した場合、後で Bean を取得すると、この変更が反映されますか?