JAX-RS Tutorial

jax-rs tutorials

Java API for RESTful Web Services (JAX-RS), is a set if APIs to developer REST service. JAX-RS is part of the Java EE6, and make developers to develop REST web application easily.

In this series of JAX-RS tutorials, we use both Jersey and RESTEasy, popular JAX-RS implementation.

Happy learning JAX-RS 🙂

Quick Start

Some quick start examples to use JAX-RS.

Basic Examples

Basic annotations and functions to develop REST service.

File Upload Examples

How to handle multipart data in JAX-RS.

Working with XML

XML support in JAX-RS.

Working with JSON

JSON support in JAX-RS.

RESTful Java clients

Create a RESTful Java client to perform “GET” and “POST” request to manipulate json data.

JAX-RS + Spring

Integrate JAX-RS with Spring framework.

Common Error Messages

Some common error messages in JAX-RS development.

References

  1. Jersey official website
  2. Jersey user guide
  3. RESTEasy official website
  4. RESTEasy user guide
  5. REST explanation in Wiki

mkyong

Founder of Mkyong.com, passionate Java and open-source technologies. If you enjoy my tutorials, consider making a donation to these charities.

56 Comments
Most Voted
Newest Oldest
Inline Feedbacks
View all comments
Samrat Roy
8 years ago

Hi Mkyong,
Thanks for your wonderful tutorials but i want to know about REST Filter using ContainerRequestFilter(jersey 1.9).
I have tried and googled it but didn’t able to find anything related to Jersey 1.9 , every1 is saying about jersey 2.X.
Please can you provide this in your JAX RS tutorials or any other user knows about it please comment below.

vahdet
8 years ago
Reply to  Samrat Roy

Right, especially combining with Spring..
the closest thing is here: https://stackoverflow.com/questions/29430984/spring-jersey-filter-provider
But it also has Spring v2 involved and also has no solution

RAHUL KARANJAVKJAR
8 years ago

Thanks Mkyong..

ali ammar
9 years ago

Thanks 🙂 You Are Awesome

Karni Mohammed Fazil
11 years ago

Where can I get the REST certification study material?

Roop
14 years ago

Yong, could you please tell me, how can we handle/get form parameters in REST service when they are in quantity approx. 15 params?

I am aware about @FormParam annotation, but if we cover all the 15 parameters, the method signature become quit long or we can say not readable.

Is there any way ? so that we can directly populate the object based on said 15 form parameters.

I heard about an annotation @Form objRef, but it is no longer exists.

please provide your thoughts on this

thanks,
-Roop

pavan kalyan
13 years ago
Reply to  Roop

Thank you…!

Nanda P
6 years ago

thanks bro, you such savior

RAHUL KARANJAVKJAR
8 years ago

Hi Mkyong,
From long days i am trying to find good material for webservice development and finally i found on https://mkyong.com.
Thank you very much for your efforts.

Thanks
Rahul K

Gaurav
8 years ago

Thank you for your wonderful help..

Mostafa Anbarmoo
8 years ago

Dear Mkyong
thanks for all your useful tutorials.
i’m java Developer from Tehran, Iran.
it my pleasure to appreciate to your tutorial and it is really useful.
Keep doing.
Best Regards

janbo
9 years ago

Typo: “set if APIs” should be “set of APIs”

Gourav Soni
10 years ago

I need help with using Java project dependency to other project :

I have a Project A and Project B .. Project B is calling Project A methods. While running on tomcat 8 . It does not return anything from Project A methods. I have added Project A to Java build path and deployment assembly of Project B .

I am using Maven , Tomcat 8 , Eclipse Mars.

Nikhil Vora
10 years ago
Reply to  Gourav Soni

Is jar of ProjectA in webapps lib of ProjectB in Tomcat?

Gourav
10 years ago
Reply to  Nikhil Vora

i did it using maven’s parent module feature .. thanks for replying 🙂

Amber
10 years ago

Very helpful site! In particular I’ve been looking at your JAX-RS tutorials. I was wondering if you have an example of the appropriate way to use the @Produces annotation with an array. For example, depending on one of the QueryParams I’d like to return either xml or pdf.

Gourav Soni
10 years ago
Reply to  Amber

you can use @Produces(MediaType.APPLICATION_OCTET_STREAM) and in return add header — header(“Content-Disposition”, “attachment; filename=” + “fileName.csv”)

Amber
10 years ago
Reply to  Amber

I realized I should be using the Accept header to determine which format is returned rather than a QueryParam.

Sachin
11 years ago

s/w versions used: TOMCAT 8, postgres 9.4, netbeans 8
@POST
@Override
@Consumes({“application/xml”, “application/json”})
public void create(Cdr entity)
{
super.create(entity);
}
public void create(T entity)
{
getEntityManager().persist(entity);
}

Prasad
11 years ago

When we deploy a RESTful service prior to Servlet 3.0 container, we will configure the Servlet class in web.xml (<servlet-class>org.glassfish.jersey.servlet.ServletContainer</servlet-class>) to delegate the HTTP requests to the respective RESTful resource. But, in case of Servlet 3.0 container (web.xml is optional), how the request will be delegated to a RESTful resource. In this case we didn’t configure a Servlet class in web.xml.

If there are multiple JAX-RS implementation related JARs are added to the application library, then how the container will identify which implementation related Servlet class will handle this request?

Any suggestions are appreciated.

Adam
11 years ago

Wonderful tutorial, extremely helpful. Thank you very much.

MindBackUp Developer
11 years ago

How can I convert SOAP web service to REST web service(JSON) format ?

Gourav Soni
10 years ago

You can use jersey library for this

Kurniawan
10 years ago
Reply to  Gourav Soni

if use jersey, what can keep use tomcat web server ?

Narayana
12 years ago

Have 2 questions, 1. How to perform authentication and authorization for rest services..? 2. How to maintain user sessions with REST ..? Please suggest what can be done to achieve this in REST

Gourav Soni
10 years ago
Reply to  Narayana

you can use filters in web.xml for authentication purpose . use of session is not preferred with REST you can use tokens.

marlonlom
12 years ago

I have a quiestion… ¿is posible integtrate resteasy with stateless EJB’s, using @EJB Annotation?

qwangwei
12 years ago

if I can use hibernate in Resteasy, I want to use hibernate in my project

neha agrawal
12 years ago

Hi MkYong,
Thanks for your tutorials!! They are really informative. I couldn’t find any tutorial on Exception/error handling in REST as well as SOAP web service. It would be nice if you can share some example on this subject.

Cheers,
Neha

Aditya
12 years ago

can you give the source code for Ejb + Jpa + Jsf + restful webservices.
I want to Insert data into Deployement Server Database using Restful Client

Aprajita
12 years ago

Thanks for your tutorials.
I have been following you for a very long time. It is always been very helpful and informative.

vijayakumar
12 years ago

hi, i am a beginner i want to know the difference between web service and web application.. can u explain me in detail..

Gnanasekaran Ebinezar
12 years ago

Thanks a lot for your valable service to the IT Community.Whenever i want to learn any new things, i used to visit your site..Thanks a lot..

sandip kandari
12 years ago

How I can deploy Restfull web service on Apache tomcat server.
on web browser url if I write http://localhost:8080//index.jsp it display hello word.
but after writing http://localhost:8080/Energymeter/resources/generic1. it is giving servlet adapter exception

please tell me i can recover from this problem

Nirmal
12 years ago
Amit Kumar
13 years ago

These examples are simple,tells you how RESTful Web Service work on basics.

Kwesi Aryee
13 years ago

An invaluable resource, very easy to understand.My first step into jax-rs has been really because of this tutorials

rafeeq
13 years ago

Can you please provide an example where a xml payload is sent through REST POST method preferably using spring resttemplate