新网创想网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
(一):首先先导入架包
10多年专注建站、设计、互联网产品按需网站策划服务,业务涵盖高端网站设计、商城开发、小程序设计、软件系统开发、成都App制作等。凭借多年丰富的经验,我们会仔细了解每个客户的需求而做出多方面的分析、设计、整合,为客户设计出具风格及创意性的商业解决方案,创新互联建站更提供一系列网站制作和网站推广的服务,以推动各中小企业全面信息数字化,并利用创新技术帮助各行业提升企业形象和运营效率。
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
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
|
(三)在spring配置文件中配置接口并且进行发布
1 2 3 |
|
注意的是在配置头上
(四)接下来是贴代码时刻了
1 package com.kaishengit.business.webservice;
2
3 import javax.jws.WebMethod;
4 import javax.jws.WebService;
5
6 //使用@WebService注解标注WebServiceI接口
7 @WebService
8 public interface WebServiceI {
9
10 //使用@WebMethod注解标注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注解标注WebServiceI接口的实现类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";
}
}
当启动tomcat起来的时候我们输入:http://localhost:8080/myproject/webservice/test?wsdl 可以看到下图所示:
说明已经发布成功了!
(五)调用,还是使用自动生成代码;首先进入项目的文件;在cmd窗口中输入:执行命令:wsimport -keep url(url为wsdl文件的路径)生成客户端代码。
例如:wsimport -keep http://localhost:8080/myproject/webservice/test?wsdl
就可以自动生成代码了。
调用代码:
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 }
可以看到:
到这边调用成功!