SpringBoot + cxf 开发webservice学习

WebService 了解
一、WebService
可把应用程序转换成web应用程序,通过使用xml,可以在应用程序间传递消息。
二、SOAP
是一种基于xml的简易协议,允许应用程序通过HTTP来交换信息。
三、WSDL
是一门基于xml的语言,用于描述webService以及如何对它们进行访问。
四、UDDI
是一种目录服务,企业可以使用它对webservice进行注册和搜索。

Web Service 有两种类型的应用

  • 1、可重复使用的应用程序组件;
  • 2、连接现有的软件。 为不同的应用程序提供一种链接其数据的途径,webservice有助于解决协同工作的问题。

在任何应用程序都可拥有WebService组件,WebService的创建与编程语言的种类无关。

cxf框架
1、CXF框架概念介绍
Apache CXF 是一个开源的 WebService 框架,CXF可以用来构建和开发 WebService,这些服务可以支持多种协议,比如:SOAP、POST/HTTP、HTTP ,CXF 大大简化了WebService并且可以天然地和 Spring 进行无缝集成。CXF是 Celtrix (ESB框架)和 XFire(webserivice) 合并而成,核心是org.apache.cxf.Bus(总线),类似于Spring的 ApplicationContext,CXF默认是依赖于Spring的,另 CXF 发行包中的jar,如果全部放到lib中,需要 JDK1.6 及以上,否则会报JAX-WS版本不一致的问题。CXF 内置了Jetty服务器 ,它是servlet容器。

2、CXF框架特点

  • A、与Spring、Servlet做了无缝对接,cxf框架里面集成了Servlet容器Jetty
  • B、支持注解的方式来发布webservice
  • C、能够显示一个webservice的服务列表
  • D、能够添加拦截器:输入拦截器、输出拦截器 :输入日志信息拦截器、输出日志拦截器、用户权限认证的拦截器

SpringBoot+cxf
1、maven添加cxf包

 
            org.apache.cxf
            cxf-spring-boot-starter-jaxws
            3.1.12
        

注意jaxws版本和parent版本有兼容问题。
参考文档:https://blog.csdn.net/Jerry_liu20080504/article/details/84287009
2、创建服务WebService

接口类
@WebService(name = "TestService")
public interface TestService {
    @WebMethod
    String sayHi(@WebParam(name = "name") String name);
}
实现类
@WebService(targetNamespace="http://test.demo.example.com/",
        endpointInterface = "com.example.demo.test.TestService")
public class TestServiceImpl implements TestService {
    public String sayHi(String name) {
        return "hello," + name;
    }
}

注意targetNamespace写错,会出现org.apache.cxf.common.i18n.UncheckedException: No operation was found with the name {http://localhost:8080/}sayHi.错误

3、发布服务

@Configuration
public class TestConfig {

    @Bean
    public ServletRegistrationBean dispatcherServlet() {
        return new ServletRegistrationBean(new CXFServlet(), "/ws/*");
    }

    @Bean(name = Bus.DEFAULT_BUS_ID)
    public SpringBus springBus() {
        return new SpringBus();
    }

    @Bean
    public TestService testService() {
        return new TestServiceImpl();
    }

    @Bean
    public Endpoint endpoint() {
        EndpointImpl endpoint = new EndpointImpl(springBus(), testService());
        endpoint.publish("/");
        return endpoint;
    }
}

4、启动spring boot 然后再浏览器中输入url:http://localhost:8080/ws?wsdl
可以看到有相关的wsdl描述信息输出了,说明服务已经发布了。
SpringBoot + cxf 开发webservice学习_第1张图片
5、客户端调用

@Component
@EnableScheduling
public class WsClient {
    public static void main(String[] args) throws Exception {
        try {
            JaxWsDynamicClientFactory dcf = JaxWsDynamicClientFactory.newInstance();
            Client c = dcf.createClient("http://localhost:8080/ws?wsdl");
            Object[] objects = c.invoke("sayHi", "wawa哇");
            System.out.println("result=" + objects[0].toString());
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}

结果:
在这里插入图片描述

参考资料:
https://www.cnblogs.com/fuxin41/p/6289162.html

你可能感兴趣的:(SpringBoot,Java)