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,471
  • 17
  • 87
  • 173
Camilla
  • 53
  • 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
  • 5,827
  • 1
  • 19
  • 36