How to publish a WSDL definition with dynamic soap:address location using Spring-WS(如何使用动态SOAP:使用Spring-WS发布地址位置)
问题描述
我希望根据保存它们的环境来更改<soap:address location="..."/>
。例如:
开发:<soap:address location="https://development.xxx.yyy.zz/abc/ws/"/>
测试:<soap:address location="https://testing.xxx.yyy.zz/abc/ws/"/>
生产:<soap:address location="https://production.xxx.yyy.zz/abc/ws/"/>
wsdl
如果要使用推荐答案基本文件,并且只根据环境更改SOAP地址位置属性,请使用以下类:
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.transform.Source;
import javax.xml.transform.dom.DOMSource;
import javax.xml.transform.sax.SAXSource;
import javax.xml.xpath.XPath;
import javax.xml.xpath.XPathConstants;
import javax.xml.xpath.XPathFactory;
import org.springframework.beans.factory.InitializingBean;
import org.springframework.core.io.Resource;
import org.springframework.util.StringUtils;
import org.springframework.ws.wsdl.wsdl11.SimpleWsdl11Definition;
import org.springframework.ws.wsdl.wsdl11.Wsdl11Definition;
import org.w3c.dom.Document;
import org.w3c.dom.Node;
public class DynamicUrlWsdlDefinition implements Wsdl11Definition, InitializingBean {
private static final String SOAP_ADDRESS_LOCATION_XPATH_EXPRESSION = "/definitions/service/port/address/@location";
private static final String SOAP_ADDRESS_LOCATION_URI_PART_1 = "https://";
private static final String SOAP_ADDRESS_LOCATION_URI_PART_3 = ".xxx.yyy.zz/abc/ws/";
private String wsEnvironment;
private SimpleWsdl11Definition delegate;
public DynamicUrlWsdlDefinition() {
this.setDelegate(new SimpleWsdl11Definition());
}
@Override
public Source getSource() {
try {
final DocumentBuilderFactory documentBuilderFactory = DocumentBuilderFactory.newInstance();
final DocumentBuilder documentBuilder = documentBuilderFactory.newDocumentBuilder();
final Document document = documentBuilder.parse(((SAXSource) this.getDelegate().getSource()).getInputSource());
final XPath xPath = XPathFactory.newInstance().newXPath();
final Node locationAttributeNode = (Node) xPath.compile(SOAP_ADDRESS_LOCATION_XPATH_EXPRESSION)
.evaluate(document, XPathConstants.NODE);
locationAttributeNode.setTextContent(SOAP_ADDRESS_LOCATION_URI_PART_1 + this.getWsEnvironment() + SOAP_ADDRESS_LOCATION_URI_PART_3);
return new DOMSource(document);
} catch (Exception e) {
return this.getDelegate().getSource();
}
}
private String getWsEnvironment() {
if (!StringUtils.hasText(wsEnvironment) || "${ws.environment}".equals(wsEnvironment)) {
this.setWsEnvironment("NO_DEFINED");
}
return wsEnvironment;
}
@Override
public void afterPropertiesSet() throws Exception {
this.getDelegate().afterPropertiesSet();
}
public void setWsdl(final Resource wsdlResource) {
this.getDelegate().setWsdl(wsdlResource);
}
private SimpleWsdl11Definition getDelegate() {
return delegate;
}
private void setDelegate(final SimpleWsdl11Definition delegate) {
this.delegate = delegate;
}
public void setWsEnvironment(final String wsEnvironment) {
this.wsEnvironment = wsEnvironment;
}
}
并声明此Spring Bean:
<bean id="pingoServiceWsdl" class="DynamicUrlWsdlDefinition">
<property name="wsdl" value="classpath:/pingoService.wsdl"/>
<property name="wsEnvironment" value="${ws.environment}"/>
</bean>
这篇关于如何使用动态SOAP:使用Spring-WS发布地址位置的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使用动态SOAP:使用Spring-WS发布地址位置
基础教程推荐
- Java 中保存最后 N 个元素的大小受限队列 2022-01-01
- Spring Boot Freemarker从2.2.0升级失败 2022-01-01
- 如何在不安装整个 WTP 包的情况下将 Tomcat 8 添加到 Eclipse Kepler 2022-01-01
- 如何强制对超级方法进行多态调用? 2022-01-01
- 首次使用 Hadoop,MapReduce Job 不运行 Reduce Phase 2022-01-01
- 如何对 HashSet 进行排序? 2022-01-01
- 如何使用 Stream 在集合中拆分奇数和偶数以及两者的总和 2022-01-01
- 由于对所需库 rt.jar 的限制,对类的访问限制? 2022-01-01
- 如何使用 Eclipse 检查调试符号状态? 2022-01-01
- 在螺旋中写一个字符串 2022-01-01