我想传递spring的XML文件中的URL并访问java类中的Url。
此文件链接到java文件,我想在java类文件中访问此文件。
Hello.XML file
<beans profile="motzie_qa">
<bean id="testProperties" class="com.motzie.TestProperties">
<property name="baseUrl" value="${10.10.5.88}" />
<property name="users">
<map>
<entry>
<key>
<util:constant static-field="com.motzie.bean.User.Role.ADMIN" />
</key>
<bean class="com.motzie.bean.User">
<constructor-arg value="testadmin@qasource.com" />
<constructor-arg value="admin" />
</bean>
</entry>
<entry>
<key>
<util:constant static-field="com.motzie.bean.User.Role.MASTER" />
</key>
<bean class="com.motzie.bean.User">
<constructor-arg value="test@qasource.com" />
<constructor-arg value="test$123" />
</bean>
</entry>
</map>
</property>
</bean>
</beans>
</beans>