我有一个包含一些 xml 内容的 context.xml 文件。我需要动态更改 bean 的值。我有一个包含 bean 值的 json,我需要使用 java 在该 bean 属性中设置该值吗?
我的 context.xml 文件
<bean id="webServiceTemplate" class="org.springframework.ws.client.core.WebServiceTemplate">
<constructor-arg ref="messageFactory" />
<property name="marshaller" ref="xmlbeansMarshaller" />
<property name="unmarshaller" ref="xmlbeansMarshaller" />
<property name="defaultUri"
value="https://www.google.com" />
</bean>
我需要使用java动态更改defaultUri的值吗?