您好,登錄后才能下訂單哦!
java利用webService 如何實現(xiàn)一個WSDL接口?針對這個問題,這篇文章詳細(xì)介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
一、使用JDK生成WSDL的對象類
1、cmd進入JDK的bin文件中
執(zhí)行命令 wsimport -keep -p com.demo.client http://localhost:8080/Demo/services/MyService?wsdl
比較常用的[options]有:
1). -d <directory>
在指定的目錄生成class文件
2). -clientjar <jarfile>
在當(dāng)前目錄生成jar文件,結(jié)合-d <directory>可以在指定的目錄生成jar文件
3). -s <directory>
在指定的目錄生成java源文件
4). -p <pkg>
指定生成文件的包結(jié)構(gòu)
5). -keep
在生成class文件,或者jar包時,同時保留java源文件
2、eclipse生成WSDL文件
在Eclipse中生成webservice客戶端代碼,New---->Other---->Webservice---->Webservice Client,選擇之前拷貝到eclipse中的wsdl路徑點擊finish,這樣eclipse就幫我們自動生成了webservice的客戶端,接下來只需在程序中調(diào)用即可,在程序中調(diào)用 eclipse自動生成的webservice客戶端;
3、MyEclipse 生成 WSDL 文件
在項目上右鍵,選擇New->Other->WebService->WebServiceClient->Next,會看到以下界面:
4、WSDL Maven支持的jar包
<dependencies> <!-- ==================== WSDL 依賴文件 start=================== --> <dependency> <groupId>org.apache.axis</groupId> <artifactId>axis</artifactId> <version>1.4</version> </dependency> <dependency> <groupId>commons-discovery</groupId> <artifactId>commons-discovery</artifactId> <version>0.5</version> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>1.2</version> </dependency> <dependency> <groupId>javax.xml</groupId> <artifactId>jaxrpc</artifactId> <version>1.1</version> </dependency> <dependency> <groupId>javax.xml.soap</groupId> <artifactId>saaj-api</artifactId> <version>1.3.5</version> </dependency> <dependency> <groupId>wsdl4j</groupId> <artifactId>wsdl4j</artifactId> <version>1.6.3</version> </dependency> <!-- ==================== WSDL 依賴文件 end====================== --> </dependencies>
關(guān)于java利用webService 如何實現(xiàn)一個WSDL接口問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。