大家好,又见面了,我是你们的朋友全栈君。
对接SAP系统,指定要用webservice 做对接。不然打死也不用webservice,webService也不怎么流行了,有更好的选择。 就java webservice而言,框架就有不下十种。网上的教程更是五花八门,零零碎碎,并且很多误导。 本博将记录下项目里用的webservice,以及调用全过程,不误导。
试用了几种,最终选型CXF,这里不做横向对比了。用它的原因很简单 1: CXF顺利跑起来了,很顺。 2: 跟spring boot 配合得比较好,无需要启用新的端口(放在restful api 项目,并共用一端口)。
Gradle 配置,maven自行转换。
compile("org.apache.cxf:cxf-spring-boot-starter-jaxws:3.2.8")
引进来之后下载了一大堆东西,如下
PS: 版本真心是难搞,需要耐心的去试配置,我的jdk是 1.8.0_144
,Spring boot 版本为 2.0.4.RELEASE
。
package com.ly.mp.swcas.main.webService;
import com.ly.mp.common.entities.RestResult;
import com.ly.mp.swcas.main.wrap.*;
import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebResult;
import javax.jws.WebService;
import java.util.List;
@WebService(name = "SwcasService"// 暴露服务名称
)
public interface SwcasService {
@WebMethod
@WebResult(name = "String", targetNamespace = "")
public String sayHello(@WebParam(name = "userName") String name);
@WebMethod
@WebResult(name = "WsResult", targetNamespace = "")
public WsResult sayHello2(@WebParam(name = "userName") String name);
}
关键 1: 注解服务名称,这个服务名称将会是webservice 地址的一部分。如 http://localhost:10034/services/SwcasService
?wsdl
@WebService(name = "SwcasService"// 暴露服务名称
关键 2: webservice 方法注解,包括方法以及结果返回注解。
@WebMethod
@WebResult(name = "WsResult", targetNamespace = "")
package com.ly.mp.swcas.main.webService;
import javax.jws.WebService;
import com.ly.mp.common.entities.RestResult;
import com.ly.mp.component.entities.UserEntity;
import com.ly.mp.swcas.main.entities.*;
import com.ly.mp.swcas.main.ibiz.*;
import com.ly.mp.swcas.main.wrap.*;
import org.springframework.beans.BeanUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import org.springframework.util.CollectionUtils;
import java.util.ArrayList;
import java.util.List;
@WebService(serviceName = "SwcasService")
@Component
public class SwcasServiceImp implements SwcasService {
@Autowired
private ICarConfigBiz carConfigBiz;
@Autowired
private IDealerBiz dealerBiz;
@Autowired
private IVehicleDespatchBiz vehicleDespatchBiz;
@Autowired
private ISupplierBiz supplierBiz;
@Autowired
private IPartBiz partBiz;
@Override
public String sayHello(String name) {
return "Hello ," + name;
}
@Override
public WsResult sayHello2(String name) {
WsResult rs= new WsResult(1,"成功");
rs.setMsg("测试成功");
rs.setResult(1);
WsResultItem resultItem =new WsResultItem("abc",1,"成功");
rs.getData().add(resultItem);
return rs;
}
关键1: 类需要加上组件注解,
@Component
WsResult
package com.ly.mp.swcas.main.webService;
import java.util.ArrayList;
import java.util.List;
public class WsResult {
private int result;
private String msg ;
private List<WsResultItem> data ;
{
data =new ArrayList<>();
}
public WsResult(int result, String msg) {
this.result = result;
this.msg = msg;
}
public int getResult() {
return result;
}
public void setResult(int result) {
this.result = result;
}
public String getMsg() {
return msg;
}
public void setMsg(String msg) {
this.msg = msg;
}
public List<WsResultItem> getData() {
return data;
}
public void setData(List<WsResultItem> data) {
this.data = data;
}
}
WsResultItem
package com.ly.mp.swcas.main.webService;
public class WsResultItem {
private String Key;
private int Result;
private String Msg;
public WsResultItem(String key, int result, String msg) {
Key = key;
Result = result;
Msg = msg;
}
public String getKey() {
return Key;
}
public void setKey(String key) {
Key = key;
}
public int getResult() {
return Result;
}
public void setResult(int result) {
Result = result;
}
public String getMsg() {
return Msg;
}
public void setMsg(String msg) {
Msg = msg;
}
}
PS: 与SAP对接主要是同步业务数据,一次同步可能是多条,每第业务数据都带有唯一的key,我们这边返回值 需要返回对应key以及处理状态。
package com.ly.mp.swcas.main.config;
import javax.xml.ws.Endpoint;
import com.ly.mp.swcas.main.webService.SwcasService;
import org.apache.cxf.Bus;
import org.apache.cxf.jaxws.EndpointImpl;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
public class CxfConfig {
@Autowired
private Bus bus;
@Autowired
SwcasService swcasService;
/** JAX-WS **/
@Bean
public Endpoint endpoint() {
EndpointImpl endpoint = new EndpointImpl(bus, swcasService);
endpoint.publish("/SwcasService");
System.out.println("---------------服务发布------------------");
return endpoint;
}
}
1:输出日志里带有服务发布的字眼。
2:服务启动成功信息
根据服务启动的信息可以知道,我们端口号是10034。 本地webservice 的地址是 :http://localhost:10034/services/SwcasService webservice 文档:http://localhost:10034/services/SwcasService?wsdl
如下图所示:
PS:前面的代码我做了脱敏,这个截图实现上把未脱敏的方法都显示出来了,不要见怪。。
因为考虑到服务的复杂性,测试起来相当麻烦。建议使用生成客户端代码。 我使用的是 idea 工具。
CXF官方下载地址:http://cxf.apache.org/download.html,上面有各种版本。看发布说明下载。
PS :我试过用最新的版本,无法使用。建议使用3.2.13版本
https://www.apache.org/dyn/closer.lua/cxf/3.2.13/apache-cxf-3.2.13.zip
第一步: (idea 2020开发工具) tools/WebServices/Generate Java Code From Wsdl。如下图一 idea 2018 工发工具) 项目文件右击,弹出菜单。如下图二
第二步 服务平台选择CXF,配置好之后点击【OK】按钮。
第三步生成效果如下图所示。
第四步:找到测试入口文件,如下所示。运行。
第五步:遇到问题,生成的代码文件编码不对。
第六步:代码文档转格式
PS:文件可能比较多,一个一个点吧,我的接口比较多,点了20次左右。。
第七步:重复第五步运行,看到输出结果了,大功告成,如果对你有帮助就点个赞吧
.
发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/162666.html原文链接:https://javaforall.cn