Reputation: 63
I'm a beginner in Java and trying to understand JAX- RS API, what it does and how exactly it works, with no progress. Would someone please explain it with some simple examples?
Upvotes: 0
Views: 98
Reputation: 6300
JAX-RS is a just specification that describes how to create REST service.
There are a lot of implementations of JAX-RS like jersey, restEasy, apache-cxf, etc.. Each implementation may have some additional feature and expand specification.
Also thre are many examples of simple rest service. For example 1 and 2
Upvotes: 1