Top "Jersey" questions

Jersey is the open source, production quality, JAX-RS (JSR 311, JSR 339) Reference Implementation for building RESTful Web services.

Jersey: Print the actual request

How can I view the actual request that Jersey generates and sends to the server? I am having issues with …

java jersey
Jersey Client API - authentication

I'm using the Jersey client API to submit SOAP requests to a JAX-WS webservice. By default Jersey is somehow using …

authentication client jersey
MessageBodyReader not found for media type=application/json

I have wrote a JAX-RS server and client both use Jersey. I want to sent a collection of my entities …

java json jersey jax-rs
What does Provider in JAX-RS mean?

Could anyone explain to me what a JAX-RS Provider is and what ‘@Provider’ annotation does? I have been reading documentation …

java jersey jax-rs
AbstractMethodError using UriBuilder on JAX-RS

I am trying to build a REST webservice using an asynchronous response. I have looked around this error on the …

java maven jersey jax-rs
SEVERE: A message body writer for Java class java.util.ArrayList and MIME media type application/json was not found

I am testing RESTful services and when I execute I am getting exceptions although I have the following jars in …

java rest jersey oc4j jdk1.5
Difference between JAX-RS and Spring Rest

I confused with the difference between JAX-RS (well, maybe should use Jersey to do comparison since JAX-RS is just spec) …

spring-mvc jersey jax-rs
How do you map multiple query parameters to the fields of a bean on Jersey GET request?

A service class has a @GET operation that accepts multiple parameters. These parameters are passed in as query parameters to …

java jersey jax-rs
SEVERE: MessageBodyWriter not found for media type=application/json, type=class com.jersey.jaxb.Todo, genericType=class com.jersey.jaxb.Todo

I am trying to create a RESTful web-service and I created one but I am getting a MessageBodyWriter not found …

java json rest jersey jax-rs
Jersey + Jackson JSON date format serialization - how to change the format or use custom JacksonJsonProvider

I am using Jersey + Jackson to provide REST JSON services layer for my application. The problem I have is that …

java serialization jersey jax-rs jackson