package cn.sxy.servcie; import javax.xml.ws.Endpoint; public class Test { public static void main(String[] args) { WsTestImpl userService = new WsTestImpl(); Endpoint.publish("http://localhost:8083/cxfws",userService); System.out.println("服务已启动........."); } }