我是 Spring 及其 bean 注入框架的新手,我需要有关如何使用它们的建议。目前我有以下,
<beans>
<bean id="citationService" class="org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean">
<property name="serviceUrl" value="http://localhost:8080/PPDFWeb/hello.htm"/>
<property name="serviceInterface" value="test_client.HelloService"/>
<property name="httpInvokerRequestExecutor">
<bean class="org.springframework.security.remoting.httpinvoker.AuthenticationSimpleHttpInvokerRequestExecutor">
</bean>
</property>
</bean>
</beans>
现在我需要服务 url 的域名是动态的,所以我可以在我的代码中以编程方式设置它。有没有办法让 bean 在 xml 中保持原样并更改 bean 的 serviceUrl?