Tagged Questions
JAX-RS: Java API for RESTful Web Services is an API that provides support in creating web services according to the REST architectural style.
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
...
18
votes
4answers
874 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 ...
18
votes
6answers
10k views
JAX-RS Frameworks
I've been doing some work with the JAX-RS reference implementation (Jersey).
I know of at least two other frameworks (Restlet & Apache CXF).
My question is: Has anyone did some comparison between ...
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 ...
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 = ...
11
votes
7answers
12k views
Unit testing a JAX-RS Web Service?
I'm currently looking for ways to create automated tests for a JAX-RS (Java API for RESTful Web Services) based web service.
I basically need a way to send it certain inputs and verify that I get ...
8
votes
1answer
3k views
How to use CXF, JAX-RS and HTTP Caching
The CXF documentation mentions caching as Advanced HTTP:
CXF JAXRS provides support for a number of advanced HTTP features by handling If-Match, If-Modified-Since and ETags headers. JAXRS Request ...
8
votes
4answers
2k views
State of the art Java web framework for RESTful GUI apps?
Yes, I know, the old question of the best web framework ... but let me explain.
I'm looking for Java Servlet based web framework that allowes RESTful interaktion and is also suitable to build web ...
7
votes
1answer
380 views
Root element name in collections returned by RESTEasy
I'm using JAX-RS via RestEasy in JBoss AS 6. When my JAX-RS resource returns a collection of items (e.g. via a List), RESTEasy always uses the name collection as the root element.
E.g.
...
7
votes
1answer
342 views
Combined JAX-RS and JAX-WS
Is there a framework, library or technique that combines JAX-RS and JAX-WS (or equivalent functionality) into one combined service in a similar way to using two endpoints (one SOAP and one REST) for ...
7
votes
2answers
1k views
How do I marshal java.util.List with JAXB like JAX-RS (CXF, and Jersey) do
It seems the latest JAX-RS can handle methods returning java.util.List as the XMLRootElement but normal JAXB cannot.
I would like to mimic what CXF and Jersey are doing.
In other words I would like ...
7
votes
2answers
2k views
URL matrix parameters vs. request parameters
I'm wondering whether to use matrix or query parameters in my URLs. I found an older discussion to that topic not satisfying.
Examples
URL with query params: ...
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
2answers
428 views
Grails vs. JAX-RS for RESTful API / MVC App
I know the title may seem like apples & oranges, but hear me out... :)
I'm building the architecture of an MVC app and considering what to use for the core of the controller / services. This ...
6
votes
1answer
4k views
How do I do a multipart/form file upload with jax-rs?
(specifically RESTeasy)
It would be nice (for a single file) to have a method signature like:
public void upload(@FormParam("name") ..., @FormParam("file") file: InputStream) ...
doable? or am I ...
6
votes
4answers
814 views
Is JAX-RS suitable as a MVC framework?
JAX-RS has some MVC support, but I wonder if JAX-RS is really a good choice to build web application for human use.
If a user enters wrong or incomplete information in a form, it should be displayed ...
6
votes
1answer
2k views
Add Response Header to JAX-RS Webservice
I am trying add some response headers to some of my webservice calls. I wrote my webservice using CXF 2.1.2 and JAX-RS. I need to return an object and I also want to add some headers to the ...
6
votes
3answers
8k views
Java REST client without schema
Goal
Java client for Yahoo's HotJobs Resumé Search REST API.
Background
I'm used to writing web-service clients for SOAP APIs, where wsimport generates proxy stubs and you're off and running. But ...
5
votes
1answer
102 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
313 views
CXF and Google Guice using JAX-RS + JAX-WS
I would like to integrate CXF with Google Guice. I am already using Guice in my project and I want to avoid adding extra dependencies.
CXF was my choice because one of the requirements is to be able ...
5
votes
2answers
296 views
REST response code for invalid data
What response code should be passed to client in case of following scenarios?
Invalid data passed while user registration like wrong email format
User name/ Email is already exists
I chose 403. I ...
5
votes
1answer
3k views
How to produce JSON output with Jersey 1.6 using JAXB
@XmlRootElement
public class Todo {
private String s = "test";
public String getS() {
return s;
}
public void setS(String s) {
this.s = s;
}
}
and service:
...
5
votes
2answers
200 views
Cross-cutting concerns in JAX-RS
I'm looking for a mechanism within JAX-RS (JSR-311) to allow me to distill out some of my cross-cutting concerns specific to my app. For example, my app has certain context which is looked up or built ...
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
2answers
216 views
JAX-RS implementation of link/element expansion?
While reading documentation of Google Data API and Atlassian REST API, I found interesting functionality - link (or title, element expansion) - http://bit.ly/i3rKMw. I would like to implement this ...
5
votes
3answers
636 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
5answers
2k views
Convert JSON query parameters to objects with JAX-RS
I have a JAX-RS resource, which gets its paramaters as a JSON string like this:
http://some.test/aresource?query={"paramA":"value1", "paramB":"value2"}
The reason to use JSON here, is that the ...
5
votes
2answers
2k views
unable to find a MessageBodyReader
I have this interface:
@Path("inbox")
public interface InboxQueryResourceTest {
@POST
@Path("{membershipExternalId}/query")
@Consumes(MediaType.APPLICATION_XML)
...
5
votes
2answers
3k views
How to deploy a JAX-RS application?
The JAX-RS 1.1 specification says on page 6:
If no Application subclass is present
the added servlet MUST be named:
javax.ws.rs.core.Application
What is the added servlet? Could it be an ...
4
votes
5answers
86 views
Running unit tests on the server (JAX-RS)
I am writing a JAX-RS (Jersey+Maven) application that does some tricky things (eg call native executables embedded in the WAR). I need to run [some of] my unit tests (JUnit4) on the server (Amazon ...
4
votes
3answers
51 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
6answers
68 views
REST approach to GET on resource via either surrogate id or business id
We have some entities that have both a unique business id (e.g. "my-unique-name") and also have an internal UUID (e.g. aa54-342-dffdf-55445-effab). Whats is a good way to provide a REST URI that can ...
4
votes
1answer
152 views
Servlet vs RESTful
Today I read about Restful services. Basically what I understand that is Restful webservices will work on HTTP request methods rather than normal webservice will work on SOAP request.
What is the ...
4
votes
1answer
171 views
Using Clojure with an annotation-based REST Server
I am considering writing a REST Server using Clojure.
I have experience using RESTEasy with Java. It uses annotations to associate URLs, template parameters, and query parameters with Java classes, ...
4
votes
1answer
94 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
2answers
274 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
1answer
780 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
2answers
679 views
Optional @PathParam in Jax-RS
I have a service where the last part of the path is optional, the user can both enter /mypath/ and /mypath/param1/.
I tried to use a regular expression to filter the last part of the path:
...
4
votes
1answer
189 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
2answers
4k views
How to set response header in JAX-RS so that user sees download popup for Excel?
I wrote code that generate Excel file using REST JAX-RS and I confirmed that the generated Excel file is in GlassFish server directory.
But my goal is when user click on the button (which generate ...
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
342 views
How do you create backwards compatible JAX-RS and JAX-WS APIs?
JAX-RS and JAX-WS are great for producing an API. However, they don't address the concern of backwards compatibility at all.
In order to avoid breaking old client when new capabilities are ...
4
votes
1answer
412 views
Using CDI + WS/RS + JPA to build an app
@Path(value = "/user")
@Stateless
public class UserService {
@Inject
private UserManager manager;
@Path(value = "/create")
@GET
@Produces(value = MediaType.TEXT_PLAIN)
public ...
4
votes
1answer
750 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" ...
4
votes
1answer
3k views
JAX-RS using exception mappers
I have read that I can create an implementation of javax.ws.rs.ext.ExceptionMapper that will map a thrown application exception to a Response object.
I've created a simple example which throws an ...