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


