Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm learning about RESTful web services and there is a lot of terminology jumbled up in my head. Can someone briefly provide a distinction between the following technologies.

  1. RESTEasy
  2. JAX-RS & JAX-WS
  3. Jersey
  4. Restlet
  5. JAXB

If I want to develop a RESTful web service and have that web service be consumed by an Android app, which technologies from the above should I use? I do not want to use SOAP...

share|improve this question

1 Answer

up vote 2 down vote accepted

Can someone briefly provide a distinction between the following technologies?

JAX-WS (JSR-224)

This is the Java standard for SOAP web services which are different from RESTful web services. There are multiple implementations of this standard.

JAX-RS (JSR-311)

This is the Java standard for RESTful web services. There are multiple implementations of this standard which include:

JAXB (JSR-222)

This is the Java standard for converting objects to/from XML. All JAX-RS implementations leverage a JAXB implementation when the JAX-RS service returns Java objects that need to be converted to/from XML. Some even leverage it when converting to/from JSON. There are multiple implementations of this standard.


If I want to develop a RESTful web service and have that web service be consumed by an Android app, which technologies from the above should I use?

Any Java EE 6 compliant application server will all the components necessary to create a RESTful web service that can easily be consumed by an Android app. Below is a series of articles I wrote that should help:

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.