要使用CXF實現Java WSDL反向生成源碼并實現客戶端調用代碼,可以按照以下步驟進行操作:
<dependencies>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
<version>3.3.7</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
<version>3.3.7</version>
</dependency>
</dependencies>
wsdl2java -p com.example.client -d src/main/java http://example.com/your-wsdl-url
這將生成一個包名為com.example.client
的Java源代碼,保存在src/main/java
目錄中。
import com.example.client.YourWebService;
import com.example.client.YourWebServiceService;
public class Client {
public static void main(String[] args) {
YourWebServiceService service = new YourWebServiceService();
YourWebService port = service.getYourWebServicePort();
// 調用WebService的方法
String result = port.yourWebServiceMethod("param1", "param2");
System.out.println(result);
}
}
在上述代碼中,首先創建YourWebServiceService
實例,并通過getYourWebServicePort()
方法獲取YourWebService
對象,然后即可調用WebService提供的方法。
注意:在運行客戶端代碼之前,需要確保WebService服務已經在運行,并且可以訪問到。