5 Mart 2018 Pazartesi

JAX-RS @CookieParam Anotasyonu

Giriş
Şu satırı dahil ederiz.
import javax.ws.rs.CookieParam;
@PathParam ve @QueryParam anotasyonları ile kardeştir.

value Alanı
Örnek
Şöyle yaparız.
@POST
@Path("/my-resource")
@Produces(CustomMediaType.APPLICATION_JSON_UTF_8)
@Consumes(CustomMediaType.APPLICATION_JSON_UTF_8)
Response createResource(@CookieParam("my-cookie") String cookie, Request request) {...}

Hiç yorum yok:

Yorum Gönder