---恢復(fù)內(nèi)容開始---
站在用戶的角度思考問題,與客戶深入溝通,找到和碩網(wǎng)站設(shè)計與和碩網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗,讓設(shè)計與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個性化、用戶體驗好的作品,建站類型包括:成都網(wǎng)站設(shè)計、成都網(wǎng)站制作、外貿(mào)網(wǎng)站建設(shè)、企業(yè)官網(wǎng)、英文網(wǎng)站、手機端網(wǎng)站、網(wǎng)站推廣、申請域名、網(wǎng)頁空間、企業(yè)郵箱。業(yè)務(wù)覆蓋和碩地區(qū)。(一):首先先導(dǎo)入架包
org.apache.cxf
cxf-rt-frontend-jaxws
${cxf.version}
org.apache.cxf
cxf-rt-transports-http
${cxf.version}
org.apache.cxf
cxf-rt-ws-security
${cxf.version}
自己用的是
(二)修改web.xml
(三)在spring配置文件中配置接口并且進(jìn)行發(fā)布
注意的是在配置頭上
(四)接下來是貼代碼時刻了
1 package com.kaishengit.business.webservice;
2
3 import javax.jws.WebMethod;
4 import javax.jws.WebService;
5
6 //使用@WebService注解標(biāo)注WebServiceI接口 7 @WebService
8 public interface WebServiceI {
9
10 //使用@WebMethod注解標(biāo)注WebServiceI接口中的方法11 @WebMethod
12 String sayHello(String name);
13
14 @WebMethod
15 String save(String name,String pwd);
16 }
package com.kaishengit.business.webservice;
import javax.jws.WebService;
//使用@WebService注解標(biāo)注WebServiceI接口的實現(xiàn)類WebServiceImpl@WebService
public class WebServiceImpl implements WebServiceI {
public String sayHello(String name) {
System.out.println("WebService sayHello "+name);
return "return:sayHello "+name;
}
public String save(String name, String pwd) {
System.out.println("WebService save "+name+", "+pwd);
return "save Success";
}
}
當(dāng)啟動tomcat起來的時候我們輸入:http://localhost:8080/myproject/webservice/test?wsdl 可以看到下圖所示:
說明已經(jīng)發(fā)布成功了!
(五)調(diào)用,還是使用自動生成代碼;首先進(jìn)入項目的文件;在cmd窗口中輸入:執(zhí)行命令:wsimport -keep url(url為wsdl文件的路徑)生成客戶端代碼。
例如:wsimport -keep http://localhost:8080/myproject/webservice/test?wsdl
就可以自動生成代碼了。
調(diào)用代碼:
1 package com.kaishengit.business.webservice;
2
3 public class Mytest {
4
5 public static void main(String[] args) {
6 WebServiceImplService w = new WebServiceImplService();
7 WebServiceI web = w.getWebServiceImplPort();
8
9 System.out.println(web.sayHello("你妹"));
10
11 }
12
13 }
可以看到:
到這邊調(diào)用成功!
---恢復(fù)內(nèi)容結(jié)束---