SpringBoot之SOAP WebService

SpringBoot的Web Service类型常见有RESTful Web Service和SOAP Web Service两种,RESTful风格的web服务比较常用,但实际工作中仍有部分场景用到SOAP Web Service。SpringBoot实现SOAP Web Service的方式有多种,下面采用cxf来实现。

1.添加maven依赖

SpringBoot之SOAP WebService

2.根据实际应用场景开发Web Service

接口类:

SpringBoot之SOAP WebService

实现类:

SpringBoot之SOAP WebService

这里以最简便的方式实现业务逻辑,此外还可以通过@SOAPBinding、@WebResult等注解以及上述注解的一些属性对服务进行配置,这里不再赘述。

3.添加配置发布Web Service

SpringBoot框架最大的优点之一就是简化配置,通常用java类的配置方式来代替繁琐的xml配置,简洁直观,不易出错。

SpringBoot之SOAP WebService

可以同时发布多个服务, 每个服务配置一个Endpoint Bean,这里只配置一个服务。

4.运行springboot项目

SpringBoot之SOAP WebService

看到上面项目启动的日志信息,证明服务发布成功,下面用soapUI工具调用服务接口

SpringBoot之SOAP WebService

至此,soap Web Service服务已成功发布。

上一篇:Online Bayesian Probit Regression介绍之Factor Graph


下一篇:面试经验And总结