WebService发布服务例子
程序员文章站
2022-03-03 09:29:23
发布 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
怎么调用这些方法参考
上一篇: python高级编程——进程和进程池
下一篇: 领域驱动设计在马蜂窝优惠中心重构中的实践