欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

WebService发布服务例子

程序员文章站 2023-12-29 23:54:34
发布 http://cxf.apache.org/download.html下载cfx项目解压,配置系统环境 maven web项目里添加cfx 怎么调用这些方法参考 https://www.cnblogs.com/tk55/p/11298435.html ......
import javax.jws.webmethod;
import javax.jws.webservice;
 
@webservice
public interface webservicei {
     
    @webmethod
    string sayhello(string name);

}
import javax.jws.webservice;
 
@webservice
public class webserviceimpl implements webservicei{
 
    @override
    public string sayhello(string name) {
        // todo auto-generated method stub
        return "你好-"+name;
    }
 

     
}

发布

import javax.xml.ws.endpoint;
 

 
public class webservicepublish {
     
    public static void main(string[] args) {
        string address = "http://192.168.1.53:12345/userservice/getservice";
        endpoint.publish(address, new webserviceimpl());
        system.out.println("webservice发布成功");
    }
}

http://cxf.apache.org/download.html下载cfx项目解压,配置系统环境

maven web项目里添加cfx

WebService发布服务例子

 

 

 


 

WebService发布服务例子

 


 

怎么调用这些方法参考

 

上一篇:

下一篇: