Difference between RESTEasy and JAX-RS

user1679378 picture user1679378 · Sep 18, 2012 · Viewed 14.3k times · Source

What is Resteasy? what is the difference between RESTEasy and JAX-RS? What is the difference between @PathParam and @QueryParam?

Answer

Joachim Sauer picture Joachim Sauer · Sep 18, 2012

According to its homepage RESTEasy is

... a fully certified and portable implementation of the JAX-RS specification.

So JAX-RS is a specification of how a library for implementing REST APIs in Java should look like and RESTEasy is one implementation of that specification.

This effectively means that any documentation on JAX-RS should apply 1:1 to RESTEasy as well.