1、发布ws 服务
package cn.tzp.ws; import javax.jws.WebMethod; import javax.jws.WebService; import javax.xml.ws.Endpoint; @WebService /** * webService: 将java类标记为实现Web Service,或者将 Java 接口标记为定义 Web Service 接口 * @author jeep * */ public class HelloService { public String sayHello(String name){ System.out.println("say hello !!"); return "----->> hello " + name ; } @WebMethod(exclude=false) //不对外公开 public String sayHello2(String name){ return "----->>hello2 " + name; } public static void main(String[] args) { /** * 参数1:服务的发布地址 * 参数2、服务的实现者 */ Endpoint.publish("http://127.0.0.1:6789/hello", new HelloService()); System.out.println("service ready !!!"); } }