I am going to make a RESTful call in Java. However, I don't know how to make the call. Do I need to use the URLConnection or others? Can anyone help me. thank you.
|
|
If you are calling a RESTful service from a Service Provider (e.g Facebook, Twitter), you can do it with any flavour of your choice: If you don't want to use external libraries, you can use Alternatively, Apache HttpClient (version 4 is the latest). It's more stable and robust that java's default Documentation on HttpClient: http://hc.apache.org/httpcomponents-client-ga/tutorial/html/index.html |
|||||||||||||
|
|
You can definitely interact with RESTful web services by using However, it's generally more desirable to use a library or framework which provides a simpler and more semantic API specifically designed for this purpose. This makes the code easier to write, read, and debug, and reduces duplication of effort. These frameworks generally implement some great features which aren't necessarily present or easy to use in lower-level libraries, such as content negotiation, caching, and authentication. Some of the most mature options are Jersey, RESTEasy, and Restlet. I'm most familiar with Restlet, and Jersey, let's look at how we'd make a Jersey Example
Restlet Example
Of course, GET requests are even simpler, and you can also specify things like entity tags and As you can see, Restlet and Jersey have similar client APIs. I believe they were developed around the same time, and therefore influenced each other. I find the Restlet API to be a little more semantic, and therefore a little clearer, but YMMV. As I said, I'm most familiar with Restlet, I've used it in many apps for years, and I'm very happy with it. It's a very mature, robust, simple, effective, active, and well-supported framework. I can't speak to Jersey or RESTEasy, but my impression is that they're both also solid choices. |
||||
|
|
|
There are several RESTful APIs around. I would recommend Jersey; Client API documentation is here; https://jersey.dev.java.net/nonav/documentation/latest/client-api.html |
|||||||||
|
|
This is very complicated in java, which is why I would suggest using Spring's
Reference:
|
|||
|
|
|
If you just need to make a simple call to a REST service from java you use something along these line
|
|||||||||||||
|
|
You can check out the CXF. You can visit the JAX-RS Article here Calling is as simple as this (quote):
|
|||
|
|
|
I want to share my personal experience, calling a REST WS with Post JSON call:
|
|||
|
|