Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does the X in JAX-RS Stand For? [closed]

In the acronym JAX-RS, what does the X stand for?

I know that RS Stands for Restful Service and J is Java and A for API. What then what about the X?

like image 304
aruuuuu Avatar asked Jan 30 '15 00:01

aruuuuu


Video Answer


1 Answers

JAX-RS  = Java API for RESTful Web Services

The X remained as part of the nomenclature. e.g.:

JAXR    = Java API for XML Registries
JAXP    = Java API for XML Processing
JAXB    = Java Architecture for XML Binding
JAX-RPC = Java API for XML-based RPC
JAX-WS  = Java API for XML Web Services  

So, the letter X is for XML.

like image 101
Paul Vargas Avatar answered Oct 22 '22 13:10

Paul Vargas