1. 下载CXF 工具解压到磁盘
2.添加工具bin目录到PATH环境变量
3.创建一个CXF client新项目
4. run -> cmd 到指定目录,并运行工具目录下的批处理 “wadl2java.bat”
5. 完成后,在IDE中刷新项目,就会发现新生成的包+文件
6. 编写client类,访问webserivce
package com.example.tuo.myCXFWebService.WS_Client; import com.example.tuo.webservice.HelloWorld; import com.example.tuo.webservice.HelloWorldService; public class Client { public static void main(String[] args) { // TODO Auto-generated method stub HelloWorld helloWorldClient = new HelloWorldService().getHelloWorldPort(); String result = helloWorldClient.sayHello("Tony"); System.out.println(result); } }
运行程序,会在控制台看到调用webService的sayHello的输出: Hello world,Tony
时间: 2024-11-08 22:00:39