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

learn more… | top users | synonyms

50
votes
10answers
32k views

Which is the best Java REST API - Restlet or Jersey? [closed]

Which REST API do you prefer - Jersey or Restlet? This would encompass both the client and server API-s. We really need to just pick one and kick the tires around but I was curious what the ...
34
votes
7answers
18k views

JAX-RS / Jersey how to customize error handling?

I'm learning JAX-RS (aka, JSR-311) using Jersey. I've successfuly created a Root Resource and am playing around with parameters: @Path("/hello") public class HelloWorldResource { @GET ...
33
votes
7answers
14k views

RESTful application on Google App Engine Java?

I would like to create a RESTful app on Google App Engine. I would like to provide XML and JSON services. I have briefly experimented with Restlet, Resteasy, and Jersey. I haven't had much success ...
18
votes
4answers
865 views

Staying DRY with JAX-RS

I'm trying to minimize repeated code for a number of JAX-RS resource handlers, all of which require a few of the same path and query parameters. The basic url template for each resource looks like ...
17
votes
4answers
6k views

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 some situations where I need to accomplish the following: Export downloadable ...
17
votes
6answers
5k views

Practical advice on using Jersey and Guice for RESTful service

From what I can find online, the state of the art for Guice + Jersey integration has stagnated since 2008 when it appears both teams reached an impasse. The crux of the issue is that JAX-RS ...
15
votes
4answers
5k views

Java REST implementation: Jersey vs CXF

What do you think is the advantages/disadvantages between this two libraries? Which of these two are best suited for production environment? By the way I will be using JSON instead of XML. I also ...
14
votes
5answers
5k views

RESTful on Play! framework

We are planning a project primarily serving content to mobile apps, but need to have a website. My question is whether is makes sense to use Jersey or Restlet to develop REST APIs for our mobile apps, ...
14
votes
6answers
23k views

How to reuse Jersey's JSON/JAXB for serialization?

I have a JAX-RS REST service implemented using Jersey. One of the cool features of JAX-RS/Jersey is how easily a POJO can be turned into a REST service, simply by sprinkling a few Java annotations... ...
12
votes
1answer
7k views

How can I customize serialization of a list of JAXB objects to JSON?

I'm using Jersey to create a REST web service for a server component. The JAXB-annotated object I want to serialize in a list looks like this: @XmlRootElement(name = "distribution") @XmlType(name = ...
10
votes
1answer
83 views

Why are concrete function implementations in traits compiled to bridge methods in Scala 2.9.x but not in 2.8.x?

In Scala versions prior to 2.9.0, concrete function implementations in traits were compiled as normal methods. From 2.9.x onward, they are compiled as bridge methods. I'm trying to find the reasoning ...
10
votes
2answers
2k views

Using Jackson as Jersey client serializer

Is it possible to use Jackson as the serializer/marshaller for JSON data instead of JAXB when using Jersey Client API? If so how to configure it?
8
votes
2answers
2k views

What's the difference between text/xml vs application/xml for webservice response

This is more of a general question about the difference between text/xml and application/xml. I am fairly new to writing webservices (REST - Jersey). I have been producing application/xml since it is ...
8
votes
4answers
2k views

How do I scale my Scala REST application that uses Akka?

I have a Scala application using Akka that receives REST requests, makes some operations against a database, and responds with some information to the client. As it is, my db operations take a long ...
8
votes
5answers
10k views

User authentication on a Jersey REST service

I am currently developing a REST application, which is using the Jersey framework. I would like to know a way that I can control user authentication. I have search a lot of places, and the closest ...
8
votes
2answers
2k views

Using filters with Grizzly server running a Jersey REST service

I'm trying to use Grizzly to create a server to run a REST service that I've developed using Jersey. I'm creating the Grizzly server using: final String baseUri = "http://localhost:9998/"; final ...
7
votes
1answer
236 views

Scala type (inference) issue?

I'm developing a REST webservice in Scala using the Jersey JAX-RS reference implementation and I'm getting a strange error. I'm trying to create a ContentDisposition object using the ...
7
votes
10answers
4k views

What is the best way to write a test case for JERSEY web services?

I have a JAX-RS web service implemented with Jersey library and now I want to test it. In order to do that I'd like to host this service in my test by preinitializing it with mocked services. What is ...
6
votes
4answers
62 views

Why use a framework for RESTful services in Java instead of vanilla servlets

I know there are a few questions regarding the libraries you can use to do RESTful services in Java, but what is the value in using them against vanilla implementations. I mean, if i was looking to ...
6
votes
1answer
342 views

How can I inject a data source dependency into a RESTful web service with Jersey (Test Framework)?

I'm building a RESTful web service using Jersey that relies on MongoDB for persistence. The web service itself connects to the default database, but for the unit tests, I would like to use a separate ...
6
votes
1answer
4k views

JAX/Jersey Custom error code in Response

In Jersey, how can we 'replace' the status string associated with a known status code? e.g. return Response.status(401).build(); generates a HTTP response that contains: HTTP/1.1 401 Unauthorized ...
5
votes
1answer
97 views

Missing dependency for field when trying to inject a custom context with Jersey

I have a custom context: public class MyContext { public String doSomething() {...} } I have created a context resolver: @Provider public class MyContextResolver implements ...
5
votes
3answers
4k views

Jersey + Jackson JSON date serialization format problem - 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 the default Date serialization format looks like that: "CreationDate":1292236718456 At ...
5
votes
3answers
630 views

Can I wrap all JAX-RS requests with custom pre-dispatch, post-dispatch and error-handler code?

I have a number of classes exposed as JAX-RS request "handlers", using javax.ws.rs.Path annotations. I want to add certain actions before every request and after each request. Also, I need to create a ...
5
votes
2answers
3k views

How to choose between Jersey, Apache Wink and JBoss RESTEasy?

I just heard about Apache Wink, and I was wondering what differences it had compared to Jersey or JBoss RESTEasy. What can be done in one that the other two can't? We've been using Jersey for some ...
5
votes
1answer
606 views

Jersey (JSR311-Implementaion) & Redirections

Is there a way to redirect the user-agent in a Jersey Resource? in Spring MVC there's the "redirect:"-Syntax but I didn't find anything comparable in jersey's Viewable class. The only method i found ...
5
votes
2answers
1k views

RESTful resource not found. 404 or 204? Jersey returns 204 on null being returned from handler

If you are looking for /Resource/Id and that resource does not exist, I had always though that 404 was the appropriate response. However, when returning "null" from a Jersey handler, I get back a "204 ...
5
votes
3answers
7k views

How to generate JSON from a Jersey resource?

I'm using Jersy and want to output the following JSON with only the fields listed: [ { "name": "Holidays", "value": ...
5
votes
2answers
5k views

JAXB Collections (List<T>) Use Pascal Case instead of Camel Case for Element Names

I have a number of JAXB beans that are directly marshalled and unmarshalled using Jersey. E.g. @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Artifact", propOrder = { "artifactId", ...
5
votes
7answers
3k views

Easiest frameworks to implement Java REST web services

What are the best frameworks for implementing both client and server REST frameworks in Java? I've been struggling a little to find an easy to use solution. Update: Both Jersey and Restlet seem like ...
5
votes
4answers
2k views

What is the best Java-way to create JSON/XML REST Web services that is similar to WCF?

I'm looking for a best way that is available for Java developers to implement REST services that will be communicating via JSON or XML. I'm looking for production-ready products. I know that Spring ...
4
votes
3answers
50 views

Does Jersey support dollar sign in Path annotation of JAX-RS?

I would like to be able to access the following rest URLs: http://localhost:9998/helloworld http://localhost:9998/helloworld/$count The first URL works fine. I am having trouble with the $count ...
4
votes
1answer
92 views

Throwing Informative error messages out of Jersy RESTful Webservices

I've got a RESTful webservice that does some IO&database activity in order to return a result. There are some Exceptions that I would like to see, ie exception thrown because an expected variable ...
4
votes
1answer
453 views

REST PathParam with Multiple Types

I've got a REST service set up to access information stored in a database. I'd like to be able to access based on either an item's id or name. So lets say I've got a record name | id | description ...
4
votes
1answer
939 views

What is a Jersey Filter?

I wanted to know basically what is a Jersey filter and how is it related to a servlet filter? are they the same? what are the main patterns of using a Jersey Filter?
4
votes
2answers
979 views

how to use some indirection when unmarshalling json to java bean using Jersey using jaxb annotations

I'm trying to unmarshall some received json (from Jira restful web service). Problem is: an "issue" has a "summary" property and a list of fields. Summary is not present as an attribute in the ...
4
votes
3answers
2k views

Java.util.Map to JSON Object with Jersey / JAXB / Jackson

I've been trying to create a Jersey REST Webservice. I want to receive and emit JSON objects from Java classes like the following: @XmlRootElement public class Book { public String code; ...
4
votes
3answers
2k views

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 the @GET service call. @GET @Path("find") ...
4
votes
1answer
1k views

Consume JSON Object in PUT Restful Service

I'm trying to implement a RESTful Service in Java that receives a JSON Object through a PUT request and automatically maps into a Java Object. I managed to do this in XML, but I can't do it using ...
4
votes
2answers
270 views

Case-insensitive URLs with JAX-RS

Is there any easy way to provide a case-insensitive URLs in a JAX-RS web service? The goal of this is to produce a web service which is a "lenient acceptor."1 I imagine it's possible to do this with ...
4
votes
3answers
2k views

How can I solve “java.lang.LinkageError: loader constraint violation” during execute Jersey 1.6 & axis2 1.3 in one web application?

I already have soap based web service running with axis2 1.3. These day, we have a plan to develop RESTful web service using Jersey 1.6. I made web application( war file ) with axis2 1.3 and Jersey ...
4
votes
1answer
776 views

How can I map semicolon-separated PathParams in Jersey?

Is there a way to use this parameter style: /products/123;456;789 in JAX-RS with Jersey? If I use PathParam, only the first parameter in the list is returned. I tried to escape the semicolon but ...
4
votes
1answer
188 views

Is it possible to control the filename for a Response from a Jersey Rest service?

Currently I have a method in Jersey that retrieves a file from a content repository and returns it as a Response. The file can be a jpeg, gif, pdf, docx, html, etc. (basically anything). Currently, ...
4
votes
1answer
3k views

Configure Jersey/Jackson to NOT use @XmlElement field annotation for JSON field naming

I am running a Jersey REST service. The POJO's which represent my resources are JAXB (XML) annotated simple Java classes (they are generated from a schema definition - so they have the annotations). ...
4
votes
3answers
2k views

How does one intercept a request during the Jersey lifecycle?

I've used Jersey for the better part of a year now and have just stumbled upon a problem to which I can't find the answer: how do you intercept (or hook into) the Jersey request lifecycle? Ideally, ...
4
votes
1answer
2k views

GAE Jersey RESTful service POST JSON

I am trying to write a service which will accept a JSON or XML object in a POST request. I have successfully written a GET request handler that will return my object as XML or JSON as requested in the ...
4
votes
2answers
899 views

How to make Jersey to use SLF4J instead of JUL?

I've found a useful article that explains how to make Jersey to use SLF4J instead of JUL. Now my unit test looks like (and it works perfectly): public class FooTest extends JerseyTest { ...
4
votes
1answer
613 views

how to increase jersey WS timeout

How do I increase the jersey WS timeout? It is waiting on a call which takes around 2 minutes. It is timing out at WS layer. Do I have to increase client timeout as well? What are the defaults for ...
4
votes
1answer
748 views

Can a Jersey GET request return a polymorphic entity?

I've got a Resource class that attempts to return an interface type, say "Shape": public interface Shape {...} @XmlRootElement public class Circle implements Shape {...} @Path("/api/shapes") public ...
4
votes
1answer
2k views

How to customize namespace prefixes on Jersey(JAX-WS)

when serializing my resources on Jersey, I want to use namespaces in some cases. Is there any way to customize the namespace prefixes on jersey? Default: <?xml version="1.0" encoding="UTF-8" ...

1 2 3 4 5 18