Top "Jax-rs" questions

JAX-RS: Java API for RESTful Web Services.

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. …

apache jersey jax-rs resteasy
JAX-RS @PathParam How to pass a String with slashes, hyphens & equals too

I am new to JAX-RS and I am trying to use Jersey to build a simple RESTful Webservice. I have 2 …

java rest jersey jax-rs
Why use JAX-RS / Jersey?

Sorry, this questions sounds silly, but after developing some of my RESTful services using Jersey, I asked myself the question …

rest jersey jax-rs
Rest - how get IP address of caller

I am writing a Java Rest Web Service and need the caller's IP Address. I thought I saw this in …

java web-services rest jax-rs restful-authentication
Can we have more than one @Path annotation for same REST method

Can we have more than one @Path annotation for same REST method i.e. the method executed is the same, …

java rest jersey jax-rs
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 …

json jaxb serialization jersey jax-rs
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 …

json jersey jax-rs
Setting request timeout for JAX-RS 2.0 Client API

I have written simple REST web service client class which uses the JAX-RS 2.0 client API to make REST requests. I …

java rest jax-rs
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 …

java exception-handling jakarta-ee jersey jax-rs
org.glassfish.jersey.internal.RuntimeDelegateImpl NOT FOUND

I am using jersey for my project and tring to parse a URI from a string. UriBuilder.fromUri("http://localhost:8000").…

java rest glassfish jersey jax-rs