Top "Jersey" questions

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

Java RestFull WebService: JAX-RS implementation with Jersey 2.3.1 libraries

I am trying to run a simple "Hallo World" application Jersey 2.3.1 REST service on JBoss jboss-eap-6.1 AS. In web.xml …

java jersey jax-rs jboss6.x
How can I grab all query parameters in Jersey JaxRS?

I am building a generic web service and need to grab all the query parameters into one string for later …

java jersey jax-rs
REST service that accepts and returns object. How to write client?

I have declared two REST web services. One which simply returns a object. And other which accepts an object and …

java rest jersey jersey-client
How to get jersey logs at server?

I am using jersey for a REST WS. How do I enable jersey logs at server side? Long story: I …

java jersey
Trying to upload a file to a JAX-RS (jersey) server

I'm trying to upload a file and other form data using multipart/form-data client with Jersey. I'm uploading to a …

java file-upload jersey client jax-rs
Configure Jackson as JSON Provider in JAX-RS 2.0

I want to use Jackson as JSON provider for my JAX-RS 2.0 webservice. For JAX-RS I use Jersey 2.0 in GlassFish 4. With …

rest jersey jackson jax-rs glassfish-4
Example of using StreamingOutput as Response entity in Jersey

Can someone post an example of how in Jersey to set StreamingOutput as an entity in a Response object? I …

jersey
Jackson + Builder Pattern?

I'd like Jackson to deserialize a class with the following constructor: public Clinic(String name, Address address) Deserializing the first …

java json jersey jackson
What is the difference between @PathParam and @QueryParam

I am newbie in RESTful jersey. I would like to ask what is the different between @PathParam and @QueryParam in …

rest jersey jax-rs
MULTIPART_FORM_DATA: No injection source found for a parameter of type public javax.ws.rs.core.Response

I am using Jersey based restful Service implementation strategy to build a service which will be used to upload files. …

java rest jersey multipartform-data jersey-2.0