0

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?

halfer
  • 19,824
  • 17
  • 99
  • 186
Camilla
  • 63
  • 1
  • 6

1 Answers1

1

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

Ruslan
  • 6,090
  • 1
  • 21
  • 36