Top "Jax-rs" questions

JAX-RS: Java API for RESTful Web Services.

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 …

java web-services unit-testing junit jax-rs
What does Provider in JAX-RS mean?

Could anyone explain to me what a JAX-RS Provider is and what ‘@Provider’ annotation does? I have been reading documentation …

java jersey jax-rs
AbstractMethodError using UriBuilder on JAX-RS

I am trying to build a REST webservice using an asynchronous response. I have looked around this error on the …

java maven jersey jax-rs
Difference between JAX-RS and Spring Rest

I confused with the difference between JAX-RS (well, maybe should use Jersey to do comparison since JAX-RS is just spec) …

spring-mvc jersey jax-rs
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 …

java jersey jax-rs
SEVERE: MessageBodyWriter not found for media type=application/json, type=class com.jersey.jaxb.Todo, genericType=class com.jersey.jaxb.Todo

I am trying to create a RESTful web-service and I created one but I am getting a MessageBodyWriter not found …

java json rest jersey jax-rs
Jersey + Jackson JSON date format serialization - 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 …

java serialization jersey jax-rs jackson
How to set the charset with JAX-RS?

How can I set the charset with JAX-RS? I've tried @Produces("text/html; charset=UTF-8") but that was ignored and …

java jakarta-ee character-encoding jax-rs
URL matrix parameters vs. query parameters

I'm wondering whether to use matrix or query parameters in my URLs. I found an older discussion to that topic …

http url rest parameters jax-rs
Can't find javax.ws.rs package in jdk

I'm trying to get into JAX-RS. My project jdk is set to 1.7.03. Does there have to be definitions of annotations …

java java-ee-6 jax-rs