JSON Example With RESTEasy + Jackson
In this tutorial we are going to see how you can integrate RESTEasy with Jackson to develop JAX-RS RESTful services that produce and consume JSON streams. As you probably know, Jackson is used to...
View ArticleJSON Example With RESTEasy + JAXB + Jettison
In this tutorial we are going to see how you can integrate RESTEasy with Jettison to develop JAX-RS RESTful services that produce and consume JSON streams. As you probably know, Jettison is a...
View ArticleRESTful Java Client With java.net.URL
In this example we are going to see how you can use java.net package utilities, to create RESTful clients that can consume simpele REST Services. It is not the easiest way to create a RESTful client,...
View ArticleCreating JAX-RS web service using Apache CXF Example
Ever since JAX-RS was introduced (JSR-311), it had a profound effect on the architecture and design of web services. It’s simplified scheme of creating an exposable service had really made an impact to...
View ArticleCreating JAX-RS web service using RESTEasy Example
Introduction RESTEasy is a JBoss Project and an implementation of JAX-RS specification. It’s simplified nature made a huge noise on the backend developers community and to this day, one of the widely...
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 ArticleJava JSON RESTful Web Service Example
In this example we shall learn implementing Restful Web Service in Java where the data interchange format shall be JSON. 1. Introduction to RESTful Web Services RESTful Web Services follow REST...
View ArticleJAX-RS Annotations Explained
In this example we shall learn some important JAX-RS annotations. To understand this tutorial, following is the prerequisite knowledge required: Basic knowledge of how to use annotations Basic REST...
View ArticleJAX-RS Web Service Example
Hello readers. In this tutorial, we will show how to use the JAX-RS (RESTful) jar files to implement a simple Hello World Web Service in Java. 1. Introduction JAX-RS stands for RESTful Web Services....
View ArticleJAX-RS Tutorial with Jersey for RESTful Web Services
1. Introduction In this post, we feature a comprehensive tutorial on JAX-RS with Jersey for RESTful Web Services. Java API for RESTful Web Services (JAX-RS) is a Java programming language API...
View Article