Jersey Hello World Example
In this example we are going to get started with Java API for RESTful Web Services (JAX-RS), a set of APIs to developer REST services. JAX-RS is part of the Java EE. REST (REpresentational State...
View ArticleJAX-RS @QueryParam Example
In this example we are going to talk about how you can use @QueryParam annotation to parse URI Query Parameters in a JAX-RS RESTful service. Basically, @QueryParam denotes that the value of the Query...
View ArticleJersey File Upload Example
In this example we are going to see how you can upload a File to a server using a JAX-RS REST Service using Jersey. Uploading a File using Jersey is fairly easy, as it uses all the HTTP infrastructure...
View ArticleXML Example With Jersey + JAXB
In this example we are going to see how you can integrate Jersey with JAXB (Java Architecture for XML Binding) to create RESTful services that consume and produce XML streams. As you probably know JAXB...
View ArticleJSON Example With Jersey and Jackson
In this post, we feature a comprehensive Example on JSON With Jersey and Jackson. We are going to see how you can integrate Jesrsey with Jackson to develop JAX-RS RESTful services that produce and...
View ArticleCreating JAX-RS web service using Jersey Example
Introduction Jersey as it states in the website, is more than just a reference implementation. It also has it’s own API that extends the specification toolkit with additional wrapped features and...
View Article