Top "Jax-rs" questions

JAX-RS: Java API for RESTful Web Services.

Easy way for Authentication and Authorization with JAX-RS Jersey

I'm pretty new to REST and am currently developing an API with JAX-RS Jersey. I am curious on what is …

java oauth jersey jax-rs user-management
jaxrs-api VS jsr311-api VS javax.ws.rs-api VS jersey-core VS jaxrs-ri

I have googled around quite a bit still am confused as to what each of the above exactly mean. Here …

rest jersey jax-rs jsr jsr311
Difference between RESTEasy and JAX-RS

What is Resteasy? what is the difference between RESTEasy and JAX-RS? What is the difference between @PathParam and @QueryParam?

java jax-rs resteasy
WebApplicationException vs Response

Among all the possibilities to return a response to the client in a REST service, I've seen two possibilities that …

java rest jersey jax-rs
Trouble creating a simple singleton class in Jersey 2 using built-in Jersey dependency injection

I am having trouble getting a very basic implementation of a singleton class off the ground with Jersey 2 (2.7) and only …

dependency-injection singleton jax-rs jersey-2.0 hk2
Servlet filter vs. CXF interceptor for modifying request & response content?

We have built some REST (jax-rs) web services using Apache CXF. They return a JSON response. I now need to …

java web-services cxf jax-rs
RESTEasy client framework authentication credentials

RESTEasy (a JAX-RS implementation) has a nice client framework, eg: ServiceApi client = ProxyFactory.create(ServiceApi.class, baseUri); How do you …

java http jax-rs resteasy
IllegalStateException within method with Response paramether

I wrote a simple class to test response reading entity method (if it works as I expect). But it didn't …

java jersey jax-rs dropwizard
Basic HTTP authentication with Jersey / Grizzly

I've written a simple REST server using JAX-RS, Jersey and Grizzly. This is how I start the server: URI baseUri = …

java jersey jax-rs http-authentication grizzly
How to combine websockets and http to create a REST API that keeps data up to date?

I am thinking about buildning a REST API with both websockets and http where I use websockets to tell the …

rest websocket jax-rs restful-architecture