package net.oseye; import javax.jws.WebMethod; import javax.jws.WebService; @WebService public class Hello { @WebMethod public String SayHello(String name){ return String.format("Hello,%s",name); } }//源代码片段来自云代码http://yuncode.net