1.注解编译服务器端代码
.
2.
import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebService;
@WebService
public interface HelloWorld {
@WebMethod
String sayHi(@WebParam(name="text")String text);
}
public class HelloWorldImpl implements HelloWorld{
@Override
public String sayHi(String text) {
return "99999999999";
}
}