List/Grid Tag Archives: JBoss RESTEasy

Java: Rest-assured (or Rest-Very-Easy)
Recently I had to write some Java code to consume REST services over HTTP. I’ve decided to use the Client libraries of RestEasy, the framework I use most of the time to expose ...

JAX-RS Bean Validation Error Message Internationalization
Introduction to Bean Validation JavaBeans Validation (Bean Validation) is a new validation model available as part of Java EE 6 platform. The Bean Validation model is supported by constraints ...

RESTEasy Tutorial Part-3: Exception Handling
Exception Handling is an obvious requirement while developing software application. If any error occured while processing user request we should show the user an error page with details ...

RESTEasy Tutorial Part-2: Spring Integration
RESTEasy provides support for Spring integration which enables us to expose Spring beans as RESTful WebServices. Step#1: Configure RESTEasy+Spring dependencies using Maven. <project ...

RESTEasy Tutorial Part-1: Basics
RESTEasy is a JAX-RS implementation from JBoss/RedHat and is in-built in JBoss 6 onwards. Here I am going to show you how to develop a Simple RESTful Web Services application using ...

RESTful Web Services with RESTeasy JAX-RS on Tomcat 7 – Eclipse and Maven project
The RESTful approach of developing web services is constantly gaining more and more attention and seems to be pushing SOAP into deprecation. I am not going to discuss which approach ...

