真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

SpringBoot調(diào)用SOAPWebService

Spring Boot項目中,調(diào)用遺留的SOAP Web Service,方法很簡單,僅需引入spring-boot-starter-web-services。

金寨網(wǎng)站建設(shè)公司成都創(chuàng)新互聯(lián)公司,金寨網(wǎng)站設(shè)計制作,有大型網(wǎng)站制作公司豐富經(jīng)驗。已為金寨上千提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\外貿(mào)營銷網(wǎng)站建設(shè)要多少錢,請找那個售后服務(wù)好的金寨做網(wǎng)站的公司定做!


    org.springframework.boot
    spring-boot-starter-web-services

WebServiceTemplate

我們使用WebServiceTemplate來調(diào)用SOAP Service。WebServiceTemplate提供了三類調(diào)用方法sendSourceAndReceive、marshalSendAndReceive、sendAndReceive。sendSourceAndReceive方法直接發(fā)送和接收XML message;marshalSendAndReceive方法發(fā)送、接收結(jié)果則為對象,由配置的Marshaller和Unmarshaller自動轉(zhuǎn)換;sendAndReceive支持更底層的操作。

package org.iata.caims.service.ws;

import org.springframework.boot.webservices.client.WebServiceTemplateBuilder;
import org.springframework.stereotype.Service;
import org.springframework.ws.client.core.WebServiceTemplate;

import javax.xml.transform.stream.StreamResult;
import javax.xml.transform.stream.StreamSource;
import java.io.StringReader;

@Service
public class MyService {
    private static final String DEFAULT_URI = "http://localhost:8080/HelloService";
    private static final String MESSAGE = "" +
            "\n" +
            "   COCO\n" +
            "";

    private final WebServiceTemplate webServiceTemplate;

    public MyService(WebServiceTemplateBuilder webServiceTemplateBuilder) {
        this.webServiceTemplate = webServiceTemplateBuilder.setDefaultUri(DEFAULT_URI).build();
    }

    public void sendSourceAndReceive() {
        StreamSource source = new StreamSource(new StringReader(MESSAGE));
        StreamResult result = new StreamResult(System.out);
        webServiceTemplate.sendSourceAndReceiveToResult(source, result);
    }

    public Object marshalSendAndReceive(String uri, Object requestPayload) {
        return this.webServiceTemplate.marshalSendAndReceive(uri, requestPayload);
    }
}

marshalSendAndReceive是常用的方法。您可以通過閱讀wsdl文件來了解Web Service支持的方法和參數(shù),也可以使用SoapUI工具生成request、response XML,然后手工編寫SOAP Domain對象。更簡單的方法是使用maven-jaxb2-plugin插件自動生成。

maven-jaxb2-plugin


    org.jvnet.jaxb2.maven2
    maven-jaxb2-plugin
    0.14.0
    
        
            
                generate
            
        
    
    
        org.itrunner.ws
        ${project.basedir}/src/main/java
        ${project.basedir}/src/main/resources/wsdl
        
            *.wsdl
        
    

如上配置,將wsdl文件放入resources/wsdl文件夾,maven編譯時將在指定包生成所有Web Service方法相關(guān)的stub類,其中包括package-info.java、ObjectFactory、request、response,并已配置好XML注解。
package-info.java

@javax.xml.bind.annotation.XmlSchema(namespace = "http://webservice.itrunner.org", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
package org.iata.caims.service.test;

ObjectFactory

import javax.xml.bind.annotation.XmlRegistry;

@XmlRegistry
public class ObjectFactory {

    /**
     * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.itrunner.ws
     */
    public ObjectFactory() {
    }

    /**
     * Create an instance of {@link SayHello }
     */
    public SayHello createSayHello() {
        return new SayHello();
    }

    /**
     * Create an instance of {@link SayHelloResponse }
     */
    public SayHelloResponse createSayHelloResponse() {
        return new SayHelloResponse();
    }
}

Request
Request類名對應(yīng)Web Service方法名,屬性對應(yīng)Web Service參數(shù)。

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;

@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
        "in0"
})
@XmlRootElement(name = "sayHello")
public class SayHello {

    @XmlElement(required = true, nillable = true)
    protected String in0;

    /**
     * Gets the value of the in0 property.
     *
     * @return possible object is {@link String }
     */
    public String getIn0() {
        return in0;
    }

    /**
     * Sets the value of the in0 property.
     *
     * @param value allowed object is {@link String }
     */
    public void setIn0(String value) {
        this.in0 = value;
    }

}

Response

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;

@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
        "out"
})
@XmlRootElement(name = "sayHelloResponse")
public class SayHelloResponse {

    @XmlElement(required = true, nillable = true)
    protected String out;

    /**
     * Gets the value of the out property.
     *
     * @return possible object is {@link String }
     */
    public String getOut() {
        return out;
    }

    /**
     * Sets the value of the out property.
     *
     * @param value allowed object is {@link String }
     */
    public void setOut(String value) {
        this.out = value;
    }
}

牛刀小試

配置WebServiceTemplateBuilde與Jaxb2Marshaller:

import org.springframework.boot.webservices.client.HttpWebServiceMessageSenderBuilder;
import org.springframework.boot.webservices.client.WebServiceTemplateBuilder;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.oxm.jaxb.Jaxb2Marshaller;
import org.springframework.ws.client.core.WebServiceTemplate;

import static java.time.Duration.ofSeconds;

@Configuration
public class Config {
    @Bean
    public WebServiceTemplate webServiceTemplate(WebServiceTemplateBuilder builder) {
        return builder.messageSenders(new HttpWebServiceMessageSenderBuilder().setConnectTimeout(ofSeconds(60)).setReadTimeout(ofSeconds(60)).build()).build();
    }

    @Bean
    public Jaxb2Marshaller jaxb2Marshaller() {
        Jaxb2Marshaller marshaller = new Jaxb2Marshaller();
        marshaller.setContextPath("org.itrunner.ws");
        return marshaller;
    }
}

調(diào)用Web Service:

import org.springframework.boot.webservices.client.WebServiceTemplateBuilder;
import org.springframework.oxm.jaxb.Jaxb2Marshaller;
import org.springframework.stereotype.Service;
import org.springframework.ws.client.core.WebServiceTemplate;

@Service
public class HelloService {
    private static final String DEFAULT_URI = "http://localhost:8080/HelloService";

    private final WebServiceTemplate webServiceTemplate;

    public HelloService(WebServiceTemplateBuilder webServiceTemplateBuilder, Jaxb2Marshaller jaxb2Marshaller) {
        this.webServiceTemplate = webServiceTemplateBuilder.setDefaultUri(DEFAULT_URI)
                .setMarshaller(jaxb2Marshaller).setUnmarshaller(jaxb2Marshaller).build();
    }

    public SayHelloResponse sayHello(SayHello request) {
        return (SayHelloResponse) this.webServiceTemplate.marshalSendAndReceive(request);
    }
}

參考文檔

Spring Boot Reference Guide
Spring Boot SOAP Client – WebServiceTemplate Example


本文題目:SpringBoot調(diào)用SOAPWebService
本文網(wǎng)址:http://weahome.cn/article/poseds.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部