user1064539
user1064539

Reputation:

Does JDK 1.6 comes with a reference implementation of JAX-RS integrated in it?

With JDK 1.6, I can implement a JAX-WS based web service without a need to have an external implementation of JAX-WS or even without the need of an external servlet container since JDK 1.6 provides both.

It seems to me that for JAX-RS, the situation is not the same; meaning that to implement a JAX-RS web service, I will need to download the reference implementation (Called Jersey) separately.

Am I correct, or JDK 1.6 comes with Jersey out of the box as well?

Upvotes: 1

Views: 2337

Answers (1)

paulsm4
paulsm4

Reputation: 121669

It's a separate download:

http://jersey.java.net/

https://wikis.oracle.com/display/Jersey/Main

Upvotes: 1

Related Questions