Spring Boot文档阅读笔记-构建SOAP的web Service Client

同样,这里是使用Maven及Java8

同样Maven添加如下依赖:

        
            wsdl4j
            wsdl4j
            1.6.1
        

        
            org.springframework.ws
            spring-ws-core
            3.0.8.RELEASE
        

添加plugin用于把wsdl生成为pojo类:

            
                org.jvnet.jaxb2.maven2
                maven-jaxb2-plugin
                0.14.0
                
                    
                        
                            generate
                        
                    
                
                
                    WSDL
                    com.example.demo.wsdl
                    
                        
                            http://127.0.0.1:8080/ws/countries.wsdl
                        
                    
                
            

这里的url指向wsdl的地址。

generatePackage为target生成的地方。

Spring Boot文档阅读笔记-构建SOAP的web Service Client_第1张图片

会进行自动生成:

Spring Boot文档阅读笔记-构建SOAP的web Service Client_第2张图片

下面说明下这个类!

CountryClient.java:创建Web Service服务端需要extend的WebServiceGateWaySupport。

CountryConfiguration.java:配置Country。

DemoApplication.java

@SpringBootApplication
public class DemoApplication {

    public static void main(String[] args) {

        SpringApplication.run(DemoApplication.class, args);
    }

    @Bean
    CommandLineRunner lookup(CountryClient quoteClient) {
        return args -> {
            String country = "Spain";

            if (args.length > 0) {
                country = args[0];
            }
            GetCountryResponse response = quoteClient.getCountry(country);
            System.err.println(response.getCountry().getCapital());
        };
    }

}

程序运行截图如下:

Spring Boot文档阅读笔记-构建SOAP的web Service Client_第3张图片

源码打包下载地址:

https://github.com/fengfanchen/Java/tree/master/SOAPWebConsume

 

 

 

你可能感兴趣的:(webservice,Spring,Boot,Java)