Top "Jersey" questions

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

How to POST a JSON object to a JAX-RS service

I am using the Jersey implementation of JAX-RS. I would like to POST a JSON object to this service but …

json jersey jax-rs
Input and Output binary streams using JERSEY?

I'm using Jersey to implement a RESTful API that is primarily retrieve and serve JSON encoded data. But I have …

java jersey jax-rs
How to get full REST request body using Jersey?

How can one get the full HTTP REST request body for a POST request using Jersey? In our case the …

java rest jersey
@POST in RESTful web service

I have been trying to understand @POST in RESTful web service using Jersey. I have gone through http://www.vogella.…

java rest jersey
How to download a file using a Java REST service and a data stream

I have 3 machines: server where the file is located server where REST service is running ( Jersey) client(browser) with access …

java rest download jersey bytestream
MessageBodyWriter not found for media type=application/json

I am facing issues while consuming JAX-RS services as JSON. Below I have added my code. This is my service …

java rest jersey jax-rs
A message body writer for Java type, class myPackage.B, and MIME media type, application/octet-stream, was not found

I am new at RESTful webservices and was trying to update my @OneToMany relationship from a standalone client application, but …

web-services rest jersey java-ee-6 jax-rs
HTTPS using Jersey Client

How do I send GET requests using the Jersey Client API to a server which runs on the HTTPS protocol. …

java jersey
How to return a PNG image from Jersey REST service method to the browser

I have a web server running with Jersey REST resources up and I wonder how to get an image/png …

java image glassfish jersey javax.imageio
Using the Jersey client to do a POST operation

In a Java method, I'd like to use a Jersey client object to do a POST operation on a RESTful …

java jakarta-ee jersey