Consuming a REST Service

Uncategorized
No Image

A REST Service in Java EE can be created using JAX-RS. The contents of such service can be consumed using ordinary HTTP requests to a URL. URLs are typically kept simple and have a logical pattern, so it’s easy to type them manually in e.g. a browser. This is different from SOAP, which essentially uses HTTP as well, but is designed to be rather complex and therefor making it not so easy to quickly test something in a browser.

 

What Ways are There to Request a URL?

There is a very large number of tools that allow us to request a URL and see its response. Among the more popular ones are:

  • Typing the URL in a browser (e.g. Chrome, FireFox, Safari)
  • The wget command line tool
  • The curl command line tool
  • The Java JAX-RS client builder
  • The Java type-safe MicroProfile Rest Client
  • The Java HtmlUnit library

 

Example

For our first example we’ll be demonstrating how to consume a REST service via a browser.

We’ll start with defining the REST Service (JAX-RS resource) itself as follows:

@Path("/resource")
@Produces(TEXT_PLAIN)
public class Resource {

    @GET
    @Path("hi")
    public String hi() {
       return "hi!";
    }

}
Next we'll create an activator class that activates JAX-RS itself:

@ApplicationPath("/rest")
public class JaxRsActivator extends Application {

}
 

When we bundle this together into a war called “simple-get” and deploy it to a default Payara server instance, we can request http://localhost:8080/simple-get/rest/resource/hi and the browser will respond with rendering “hi!”:

 

browser-get

 

When using the command line, we can use the wget command to achieve consume the REST Service. This can be done as follows:

wget -S -O - http://localhost:8080/simple-get/rest/resource/hi
This will print something like the following to stdout:

HTTP/1.1 200 OK
  Server: Payara Server  5 #badassfish
  X-Powered-By: Servlet/4.0 JSP/2.3 (Payara Server  5 #badassfish Java/Oracle Corporation/1.8)
  Content-Type: text/plain
  Content-Length: 3
  X-Frame-Options: SAMEORIGIN
hi!
 

For the next example we’ll be looking at how to consume a rest service programmatically via Java.

 

From a standalone Java SE application, but also from a Java EE application, this can be done using the JAX-RS Client Builder API as follows:

String response =
    ClientBuilder.newClient()
         .target(
             URI.create(new URL("http://localhost:8080/simple-get/rest/resource/hi").toExternalForm()))
         .request(TEXT_PLAIN)
         .get(String.class);
 

After executing this code the string “response” will be set to the “hi!” that was returned from our service.

 

The full source of this application can be found on GitHub, along with an automated tests that demonstrates how the application is supposed to be called:

 

https://github.com/javaee-samples/javaee7-samples/tree/master/jaxrs/simple-get

{{cta(‘2eb9cd6f-9ea8-460c-abb1-ae8655654ba2’)}}

 

Comments (0)

Post a comment

Your email address will not be published. Required fields are marked *

Payara needs the contact information you provide to us to contact you about our products and services. You may unsubscribe from these communications at any time. For information on how to unsubscribe, as well as our privacy practices and commitment to protecting your privacy, please review our Legal & Privacy Policy.

Related Posts

4 minutes
Uncategorized

Leading the Way: Payara Platform Community 7 Beta Now Fully Jakarta EE 11 Certified

We’re excited to announce that Payara Platform Community 7 Beta application server is now fully certified as Jakarta EE 11 […]

Understanding the Security Issues of Aging Middleware 6 minutes
Community

Boost Developer Productivity with Payara Server Maven Plugin + AI Agent

Managing Payara Server Just Got Smarter  Imagine managing your Jakarta EE applications not just with Maven goals, but by […]

Blue background with coral and fish. Left text: 'MONTHLY CATCH'. Right: laptop screen with tech tabs and Payara Community logo. 4 minutes
Community

The Payara Monthly Catch – August 2025

Welcome aboard the August 2025 issue of The Payara Monthly Catch! With summer in full swing, things may have felt […]