我有几个基于 Spring 的应用程序 - Web、Web 服务
对于我的 Web 服务项目,在我的 ws-config.xml 文件中,我指定了 wsdl 的位置。过去已将其设置为 localhost,但如果可以的话,我现在需要将其作为属性文件中的可配置值。
<ws:dynamic-wsdl id="ServiceDefinition"
portTypeName="Test" locationUri="http://localhost/Test/webservice">
<ws:xsd location="/WEB-INF/schemas/my-test.xsd" />
</ws:dynamic-wsdl>
我需要能够将 locationUri 引用为属性,但我不知道该怎么做?
任何人都可以帮忙吗?