springboot-bucket/springboot-cxf/README.md
2018-06-19 14:57:48 +08:00

54 lines
1.4 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

## 实现WebService
利用Apache CXF实现WebService
启动之后wsdl访问链接<http://localhost:8092/services/CommonService?wsdl>
## 客户端动态代理调用
这个在单元测试类ApplicationTests中有演示这里要注意的是model类的包名一定要放到指定的路径下。
也就是targetNamespace的倒叙包名中。
## 客户端代码生成
有两种方式生成客户端调用代码
**Apache的wsdl2java工具**
```
wsdl2java -autoNameResolution http://xxx?wsdl
```
**JDK自带的工具推荐**
```
wsimport -encoding utf-8 -p com.xncoding.webservice.client -keep http://xxx?wsdl -s d:/ws -B-XautoNameResolution
```
其中:
```
-encoding 指定编码格式此处是utf-8的指定格式
-keep是否生成Java源文件
-s指定.java文件的输出目录
-d指定.class文件的输出目录
-p定义生成类的包名不定义的话有默认包名
-verbose在控制台显示输出信息
-b指定jaxws/jaxb绑定文件或额外的schemas
-extension使用扩展来支持SOAP1.2
```
生成的客户端代码不能改包名
``` java
CommonService_Service c = new CommonService_Service();
com.xncoding.webservice.client.User user = c.getCommonServiceImplPort().getUser("Tom");
assertThat(user.getName(), is("Tom"));
```
## 许可证
Copyright (c) 2018 Xiong Neng
基于 MIT 协议发布: <http://www.opensource.org/licenses/MIT>