Restful java client with java.net.URL


Restful services with Jersey and java.net.URL


Java has introduced the class called “URL” (Uniform Resource Locator) under java.net package which basically points to any resource on the web.

This class can be used as a Rest client to perform some of the basic operations on Rest service.

Create a new Maven Web project in eclipse (Refer Rest service Hello World project for the same)

Project structure


RestWithJavaURL_project_structure

Step 1

Update pom.xml with below dependencies

  1. <project xmlns="http://maven.apache.org/POM/4.0.0
  2.         "xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3.          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
  4.              http://maven.apache.org/maven-v4_0_0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>RestWithJavaURL</groupId>
  7. <artifactId>RestWithJavaURL</artifactId>
  8. <packaging>war</packaging>
  9. <version>0.0.1-SNAPSHOT</version>
  10. <name>RestWithJavaURL MavenWebapp</name>
  11. <url>http://maven.apache.org</url>
  12.  
  13. <dependencies>
  14.       <dependency>
  15.            <groupId>junit</groupId>
  16.            <artifactId>junit</artifactId>
  17.            <version>3.8.1</version>
  18.            <scope>test</scope>
  19.       </dependency>
  20.  
  21.      <dependency>
  22.           <groupId>junit</groupId>
  23.           <artifactId>junit</artifactId>
  24.           <version>3.8.1</version>
  25.           <scope>test</scope>
  26.     </dependency>
  27.  
  28.     <dependency>
  29.           <groupId>org.glassfish.jersey.containers</groupId>
  30.           <artifactId>jersey-container-servlet</artifactId>
  31.           <version>2.24</version>
  32.     </dependency>
  33.  
  34.     <dependency>
  35.           <groupId>javax.xml</groupId>
  36.            <artifactId>jaxb-api</artifactId>
  37.           <version>2.1</version>
  38.     </dependency>
  39.  
  40. </dependencies>
  41.  
  42. <build>
  43. <finalName>RestWithJavaURL</finalName>
  44. </build>
  45. </project>
<project xmlns="http://maven.apache.org/POM/4.0.0
         "xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
              http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>RestWithJavaURL</groupId>
<artifactId>RestWithJavaURL</artifactId>
<packaging>war</packaging>
<version>0.0.1-SNAPSHOT</version>
<name>RestWithJavaURL MavenWebapp</name>
<url>http://maven.apache.org</url>

<dependencies>
      <dependency>
           <groupId>junit</groupId>
           <artifactId>junit</artifactId>
           <version>3.8.1</version>
           <scope>test</scope>
      </dependency>

     <dependency>
          <groupId>junit</groupId>
          <artifactId>junit</artifactId>
          <version>3.8.1</version>
          <scope>test</scope>
    </dependency>

    <dependency>
          <groupId>org.glassfish.jersey.containers</groupId>
          <artifactId>jersey-container-servlet</artifactId>
          <version>2.24</version>
    </dependency>

    <dependency>
          <groupId>javax.xml</groupId>
           <artifactId>jaxb-api</artifactId>
          <version>2.1</version>
    </dependency>

</dependencies>

<build>
<finalName>RestWithJavaURL</finalName>
</build>
</project>

We have added dependencies for Jersey servlet,Jaxb,servelt api and Junit in the above pom file.

Step 2

Update web.xml file with Jersey servlet container

we have defined a special servlet called “jersey-serlvet” in web.xml and mapped it by the URL pattern /rest/*

So just like any other servlet in web application,any request matching with the given pattern i.e /rest/* will be redirected to “Jersey servelt”.

  1. <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
  2.                         "http://java.sun.com/dtd/web-app_2_3.dtd">
  3.  
  4. <web-app>
  5. <display-name>Archetype Created Web Application</display-name>
  6. <servlet>
  7.     <servlet-name>jersey-serlvet</servlet-name>
  8.     <servlet-class>org.glassfish.jersey.servlet.ServletContainer</servlet-class>
  9.          <init-param>
  10.          <param-name>jersey.config.server.provider.packages</param-name>
  11.          <param-value>com.kb.rest.resource</param-value>
  12.          </init-param>
  13.        <load-on-startup>1</load-on-startup>
  14.     </servlet>
  15.  
  16.     <servlet-mapping>
  17.         <servlet-name>jersey-serlvet</servlet-name>
  18.         <url-pattern>/rest/*</url-pattern>
  19.     </servlet-mapping>
  20. </web-app>
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
                        "http://java.sun.com/dtd/web-app_2_3.dtd">

<web-app>
<display-name>Archetype Created Web Application</display-name>
<servlet>
	<servlet-name>jersey-serlvet</servlet-name>
	<servlet-class>org.glassfish.jersey.servlet.ServletContainer</servlet-class>
	     <init-param>
		 <param-name>jersey.config.server.provider.packages</param-name>
		 <param-value>com.kb.rest.resource</param-value>
	     </init-param>
	   <load-on-startup>1</load-on-startup>
	</servlet>

	<servlet-mapping>
		<servlet-name>jersey-serlvet</servlet-name>
		<url-pattern>/rest/*</url-pattern>
	</servlet-mapping>
</web-app>

We have also provided the package of java classes(to be qualified as Rest services) under init-param tag.

This package will be considered by Jersey servlet container to identify the actual service when the request comes in.

Step 3

Create a Resource class as below

  1. package com.kb.rest.resource;
  2.  
  3. import java.util.List;
  4.  
  5. import javax.ws.rs.Consumes;
  6. import javax.ws.rs.GET;
  7. import javax.ws.rs.POST;
  8. import javax.ws.rs.Path;
  9. import javax.ws.rs.Produces;
  10. import javax.ws.rs.core.MediaType;
  11. import javax.ws.rs.core.Response;
  12.  
  13. import com.kb.model.User;
  14. import com.kb.service.UserService;
  15.  
  16. @Path("/userInfo")
  17. public class UserResource {
  18.     UserService userService = new UserService();
  19.  
  20.     @POST
  21.     @Consumes(MediaType.APPLICATION_XML)
  22.     public Response createUser(User user) {
  23.         userService.createUser(user);
  24.         String result = "User created with " + "ID: "+user.getId();
  25.         return Response.status(201).entity(result).build();
  26.     }
  27.  
  28.     @GET
  29.     @Produces(MediaType.APPLICATION_XML)
  30.     public List<User> getAllUsers() {
  31.         List<User> userList = userService.getAllUsers();
  32.         return userList;
  33.     }
  34. }
package com.kb.rest.resource;

import java.util.List;

import javax.ws.rs.Consumes;
import javax.ws.rs.GET;
import javax.ws.rs.POST;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.Response;

import com.kb.model.User;
import com.kb.service.UserService;

@Path("/userInfo")
public class UserResource {
	UserService userService = new UserService();

	@POST
	@Consumes(MediaType.APPLICATION_XML)
	public Response createUser(User user) {
		userService.createUser(user);
		String result = "User created with " + "ID: "+user.getId();
		return Response.status(201).entity(result).build();
	}

	@GET
	@Produces(MediaType.APPLICATION_XML)
	public List<User> getAllUsers() {
		List<User> userList = userService.getAllUsers();
		return userList;
	}
}


@Path(“/userInfo”)


This annotation helps to map the request URL to appropriate Rest service.

So any request with /userInfo (relative to the base URI) will be mapped to UserResource.

This annotation should be used either at the class level or at the method level.

@GET


This annotation specifies that only GET requests will be accepted by this method.

This annotation will be used at the method level.


@POST


This annotation specifies that only POST requests will be accepted by this method.

This annotation will be used at the method level.


@Consumes(MediaType.APPLICATION_XML)


This annotation is used to specify the representation of a data (MIME type) that the service can accept from the client.

This annotation can be used either at the class level or at the method level.

If this annotation is applied at the class level,all the methods in the class will accept the same MIME type data from client by default.

However we can override this at the method level with different MIME type.

We can also specify multiple MIME types as below@Consumes({“application/xml”, “application/json”})

Note:

We should Use application/xml for the xml to be processed by programs and we should use text/xml if we are using xml for human reading purposes.


@Produces(MediaType.APPLICATION_XML)


This annotation is used to specify the representation of a data (MIME type) that the service can produce and send it to client.

This annotation can be used either at the class level or at the method level.

If this annotation is applied at the class level,all the methods in the class can produce the same MIME type data by default.

However we can override this at the method level with different MIME type.

We can also specify multiple MIME types as below@Produces({“application/xml”, “application/json”})

Step 4

Create the business Service class as below

  1. package com.kb.service;
  2.  
  3. import java.util.List;
  4.  
  5. import com.kb.dao.UserDAO;
  6. import com.kb.model.User;
  7.  
  8. public class UserService {
  9.     UserDAO userDao = new UserDAO();
  10.  
  11.     public List<User> getAllUsers() {
  12.         List<User> userList = userDao.getAllUsers();
  13.         return userList;
  14.     }
  15.  
  16.     public void createUser(User user) {
  17.         userDao.createUser(user);
  18.     }
  19.  
  20. }
package com.kb.service;

import java.util.List;

import com.kb.dao.UserDAO;
import com.kb.model.User;

public class UserService {
	UserDAO userDao = new UserDAO();

	public List<User> getAllUsers() {
		List<User> userList = userDao.getAllUsers();
		return userList;
	}

	public void createUser(User user) {
		userDao.createUser(user);
	}

}


Step 5

Create a DAO class as below

  1. package com.kb.dao;
  2.  
  3. import java.util.ArrayList;
  4. import java.util.HashMap;
  5. import java.util.List;
  6.  
  7. import com.kb.model.User;
  8.  
  9. //Just to avoid DB calls in this example, Assume below data is interacting with DB
  10. public class UserDAO {
  11.     static HashMap<String, User> usersMap = new HashMap<String, User>();
  12.  
  13.     public UserDAO() {
  14.             User user1 = new User();
  15.             user1.setId("1");
  16.             user1.setAge(20);
  17.             user1.setName("raj");
  18.            
  19.             User user2 = new User();
  20.             user2.setId("2");
  21.             user2.setAge(21);
  22.             user2.setName("ram");
  23.            
  24.             usersMap.put("1", user1);
  25.             usersMap.put("2", user2);
  26.     }
  27.  
  28.     public List<User> getAllUsers() {
  29.  
  30.         List<User> userList = new ArrayList<User>(usersMap.values());
  31.         return userList;
  32.     }
  33.  
  34.     public void createUser(User user) {
  35.         usersMap.put(user.getId(), user);
  36.     }
  37.  
  38. }
package com.kb.dao;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;

import com.kb.model.User;

//Just to avoid DB calls in this example, Assume below data is interacting with DB
public class UserDAO {
	static HashMap<String, User> usersMap = new HashMap<String, User>();

	public UserDAO() {
			User user1 = new User();
			user1.setId("1");
			user1.setAge(20);
			user1.setName("raj");
			
			User user2 = new User();
			user2.setId("2");
			user2.setAge(21);
			user2.setName("ram");
			
			usersMap.put("1", user1);
			usersMap.put("2", user2);
	}

	public List<User> getAllUsers() {

		List<User> userList = new ArrayList<User>(usersMap.values());
		return userList;
	}

	public void createUser(User user) {
		usersMap.put(user.getId(), user);
	}

}


Create the classes for java client

Step 6

Client to make GET call

  1. package com.kb.rest.client;
  2.  
  3. import java.io.BufferedReader;
  4. import java.io.IOException;
  5. import java.io.InputStreamReader;
  6. import java.net.HttpURLConnection;
  7. import java.net.MalformedURLException;
  8. import java.net.URL;
  9.  
  10. public class RestGetClient {
  11.     public static void main(String[] args) {
  12.        
  13.         try {
  14.             URL url = new URL("http://localhost:8080/RestWithJavaURL/rest/userInfo");
  15.             HttpURLConnection conn = (HttpURLConnection) url.openConnection();
  16.             conn.setRequestMethod("GET");
  17.             conn.setRequestProperty("Accept", "application/xml");
  18.  
  19.             if (conn.getResponseCode() != 200) {
  20.                 throw new RuntimeException("Request Processing Failed : HTTP error code : "
  21.                         + conn.getResponseCode());
  22.             }
  23.  
  24.             BufferedReader br = new BufferedReader(new InputStreamReader(
  25.                 (conn.getInputStream())));
  26.  
  27.             String output;
  28.             System.out.println("Output received from Rest service .... \n");
  29.             while ((output = br.readLine()) != null) {
  30.                 System.out.println(output);
  31.             }
  32.             conn.disconnect();
  33.            }
  34.                catch (MalformedURLException e) {
  35.             e.printStackTrace();
  36.           }
  37.        
  38.            catch (IOException e) {
  39.             e.printStackTrace();
  40.           }
  41.     }
  42.  
  43. }
package com.kb.rest.client;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URL;

public class RestGetClient {
	public static void main(String[] args) {
		
		try {
			URL url = new URL("http://localhost:8080/RestWithJavaURL/rest/userInfo");
			HttpURLConnection conn = (HttpURLConnection) url.openConnection();
			conn.setRequestMethod("GET");
			conn.setRequestProperty("Accept", "application/xml");

			if (conn.getResponseCode() != 200) {
				throw new RuntimeException("Request Processing Failed : HTTP error code : "
						+ conn.getResponseCode());
			}

			BufferedReader br = new BufferedReader(new InputStreamReader(
				(conn.getInputStream())));

			String output;
			System.out.println("Output received from Rest service .... \n");
			while ((output = br.readLine()) != null) {
				System.out.println(output);
			}
			conn.disconnect();
		   } 
               catch (MalformedURLException e) {
			e.printStackTrace();
		  }
		
	       catch (IOException e) {
			e.printStackTrace();
		  }
	}

}


Step 7

Client to make POST call

  1. package com.kb.rest.client;
  2. import java.io.BufferedReader;
  3. import java.io.IOException;
  4. import java.io.InputStreamReader;
  5. import java.io.OutputStream;
  6. import java.net.HttpURLConnection;
  7. import java.net.MalformedURLException;
  8. import java.net.URL;
  9.  
  10. public class RestPostClient {
  11.     public static void main(String[] args) {
  12.          try {
  13.                 URL url = new URL("http://localhost:8080/RestWithJavaURL/rest/userInfo");
  14.         HttpURLConnection conn = (HttpURLConnection) url.openConnection();
  15.         conn.setDoOutput(true);
  16.         conn.setRequestMethod("POST");
  17.         conn.setRequestProperty("Content-Type", "application/xml");
  18.  
  19.         String xmlHeader = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
  20.         String input = xmlHeader+"<User><id>1</id><name>Roy Thomas Fielding</name><age>51</age></User>";
  21.  
  22.         OutputStream os = conn.getOutputStream();
  23.         os.write(input.getBytes());
  24.         os.flush();
  25.  
  26.         if (conn.getResponseCode() != HttpURLConnection.HTTP_CREATED) {
  27.         throw new RuntimeException("Request Processing Failed : HTTP error code : "
  28.                                                                                          + conn.getResponseCode());
  29.          }
  30.  
  31.         BufferedReader br = new BufferedReader(new InputStreamReader((conn.getInputStream())));
  32.  
  33.         String output;
  34.         System.out.println("Output received from Rest service ....");
  35.         while ((output = br.readLine()) != null) {
  36.                        System.out.println(output);
  37.             }
  38.  
  39.         conn.disconnect();
  40.           }
  41.            catch (MalformedURLException e) {
  42.             e.printStackTrace();
  43.           }
  44.            catch (IOException e) {
  45.             e.printStackTrace();
  46.          }
  47.     }
  48.  
  49. }
package com.kb.rest.client;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URL;

public class RestPostClient {
	public static void main(String[] args) {
	     try {
                URL url = new URL("http://localhost:8080/RestWithJavaURL/rest/userInfo");
		HttpURLConnection conn = (HttpURLConnection) url.openConnection();
		conn.setDoOutput(true);
		conn.setRequestMethod("POST");
		conn.setRequestProperty("Content-Type", "application/xml");

		String xmlHeader = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
		String input = xmlHeader+"<User><id>1</id><name>Roy Thomas Fielding</name><age>51</age></User>";

		OutputStream os = conn.getOutputStream();
		os.write(input.getBytes());
		os.flush();

		if (conn.getResponseCode() != HttpURLConnection.HTTP_CREATED) {
		throw new RuntimeException("Request Processing Failed : HTTP error code : "
                                                                                         + conn.getResponseCode());
		 }

		BufferedReader br = new BufferedReader(new InputStreamReader((conn.getInputStream())));

		String output;
		System.out.println("Output received from Rest service ....");
		while ((output = br.readLine()) != null) {
                       System.out.println(output);
		    }

		conn.disconnect();
	      } 
           catch (MalformedURLException e) {
			e.printStackTrace();
		  }
           catch (IOException e) {
			e.printStackTrace();
		 }
	}

}


Step 8

Build the war file and deploy in Tomcat

Step 9

Check the output

Run RestGetClient class

Output appears as below

RestWithJavaURL_get_ouutput

Now run RestPostClient class

Output appears as below

RestWithJavaURL_post_ouutput

Download this project RestWithJavaURL.zip

About the Author

Founder of javainsimpleway.com
I love Java and open source technologies and very much passionate about software development.
I like to share my knowledge with others especially on technology 🙂
I have given all the examples as simple as possible to understand for the beginners.
All the code posted on my blog is developed,compiled and tested in my development environment.
If you find any mistakes or bugs, Please drop an email to kb.knowledge.sharing@gmail.com

Connect with me on Facebook for more updates

Share this article on