对于请求wsdl的webService地址补充

前段时间遇到webService请求接口,就记录一下客户端的请求方式,可是今天又遇到请求webService接口,心想拿着直接用吧,可惜的是,竟然不能用,根据服务端框架使用的不同,请求方式就不同,哎,何必呢?

JaxWsDynamicClientFactory dcf = JaxWsDynamicClientFactory.newInstance();
            Client client = dcf.createClient("地址?wsdl");

       
       Object[] objects = new Object[0];
            
            objects = client.invoke("方法名", 参数1, 参数2, 参数3, 参数4);

            System.out.println("返回数据:" + objects[0]);

其中,需要引入包:


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


    org.apache.cxf
    cxf-rt-frontend-jaxws
    3.1.6


    org.apache.cxf
    cxf-rt-transports-http
    3.1.6

这个倒是相对比较简便

你可能感兴趣的:(开发工具)