Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What can I use to create a REST client in Java? [duplicate]

Tags:

java

rest

cxf

Possible Duplicate:
Rest clients for Java?

If I want to use Java to create a REST client, what should I use?

Can i use CXF?

like image 843
jojo Avatar asked May 15 '09 12:05

jojo


2 Answers

I used Restlet. I really liked it and wrote a blog post about my experience.

like image 66
Vinnie Avatar answered Sep 22 '22 09:09

Vinnie


There is a Jersey client API that allows you to easily implement clients in Java

like image 45
Brian Agnew Avatar answered Sep 19 '22 09:09

Brian Agnew