5
votes
6answers
1k 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 …
4
votes
1answer
470 views
What is the minimal configuration for REST-fully annotated service built on Spring 3 (m3)?
I'm trying to expose a REST-full service (hosted by Tomcat) and can't figure out what is the required configuration for Spring 3 (M3).
This is how (example) the service looks like:
@Controller
…
3
votes
4answers
915 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... …
3
votes
5answers
486 views
JAX-RS is perfect for implementing REST. What do you use to call REST services in Java?
Ideally, I am looking for something like JAX-RS (using annotations to describe the services I want to call), but allowing to call REST services implemented using other technologies (not JAX-RS). Any …
3
votes
9answers
490 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 …
3
votes
4answers
2k 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
…
2
votes
3answers
2k 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 …
1
vote
2answers
52 views
JAX-RS get entity as JAXB object and as String
I have a JAX-RS web service (using jersey) that accepts a JAXB object as the request entity. When we get an error, we want to log the original xml string that was sent to us. Currently, I am just …
1
vote
2answers
54 views
Get ServletContext on tomcat from jax-rs / jersey
I'm playing around with jax-rs , deploying on tomcat (handling via com.sun.ws.rest.spi.container.servlet.ServletContainer). It's basically
@Path("/hello")
@Produces({"text/plain"})
public class …
1
vote
6answers
1k 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 …
0
votes
3answers
29 views
How to model parent-child entities via REST and JAX-RS
I am working on a REST based API, and having some trouble figuring out what the canonical way is to represent parent / child relationships. (I am writing beans in CXF and using JAX-RS and JAXB. I …
0
votes
1answer
19 views
jersey Viewable and c:import tag lib
Giver a resource class that has a method witch returns a Viewable (or generaly any jsp page). Is there a way to use the c:import or jsp:include taglib to include a Viewable response from a jaxrs …
0
votes
1answer
22 views
JAX-RS interface markup and @Context injection
Consider the following simple RESTEasy (JAX-RS) service:
@Path("/example-service")
public interface ExampleService {
@Path("/ping")
@GET
public String ping(String message);
}
I want …
0
votes
2answers
23 views
cxf.jaxrs: IllegalArgumentException when using JAXRSServerFactoryBean
I ran into the following issue when setting up a JAXRS test service in a unit test.
This is the code (taken from an AbstractJUnit4SpringContextTests-derived test class):
JAXRSServerFactoryBean sf …
0
votes
1answer
24 views
How is dispatching controlled in JAX-RS?
I'm writing a RESTful Web Service with RESTeasy. This is an implementation of JAX-RS. You annotate a class or method with a single @Path annotation. Regular expressions are used to get path …
