6 Aralık 2017 Çarşamba

JAX-RS @Context Anotasyonu

Giriş
@Context ile Application, UriInfo, HttpHeaders, Request, SecurityContext and Providers gibi bilgilere erişebiliriz.

Örnek
Şöyle yaparız.
@Path("/resource")
public class Resource {
  @Context
  private HttpHeaders headers;

  @GET
  public void get(@Context UriInfo uriInfo) {
    /* use headers or uriInfo variable here */
  }
}

Hiç yorum yok:

Yorum Gönder