4 Nisan 2018 Çarşamba

JAX-WS @WebMethod Anostasyonu

Giriş
Şöyle yaparız.
@WebMethod
@WebResult(name = "Biller")
public Biller getBiller(@WebParam(name = "billerId") Integer billerId){}
operationName Alanı
Örnek
Şöyle yaparız.
@WebService(serviceName = "MyWebService")
public class MyWebService {

    @WebMethod(operationName = "Foo")
    public void foo() {
        System.out.println(new Foo());
    }
}

Hiç yorum yok:

Yorum Gönder