Build a REST Web Service Using Spring

this tutorial provides a step-by-step guide for building a rest web service using the spring framework.

prerequisites:

1. create a maven web project

create a maven web project using this tutorial and name your project springrestservice .

the structure of the generated project looks like the following:

2. add spring dependencies

after creating the web project, the first step is to add spring dependencies into pom.xml, like so:

<properties>
        <springframework.version>4.3.0.release</springframework.version>
        <jackson.library>2.7.5</jackson.library>
   <maven.compiler.source>1.8</maven.compiler.source>
      <maven.compiler.target>1.8</maven.compiler.target>
</properties>
<dependencies>
    <dependency>
            <groupid>org.springframework</groupid>
            <artifactid>spring-core</artifactid>
            <version>${springframework.version}</version>
        </dependency>

        <dependency>
            <groupid>org.springframework</groupid>
            <artifactid>spring-web</artifactid>
            <version>${springframework.version}</version>
        </dependency>
        <dependency>
            <groupid>org.springframework</groupid>
            <artifactid>spring-webmvc</artifactid>
            <version>${springframework.version}</version>
        </dependency>

        <dependency>
            <groupid>javax.servlet</groupid>
            <artifactid>javax.servlet-api</artifactid>
            <version>3.1.0</version>
        </dependency>
        <dependency>
            <groupid>com.fasterxml.jackson.core</groupid>
            <artifactid>jackson-databind</artifactid>
            <version>${jackson.library}</version>
        </dependency>
  </dependencies>


in this tutorial, we use spring 4.3.0 and we're interested in the following modules:

to learn more about spring modules, check this out.

after adding the above dependencies, the following jars are automatically imported into your project under maven dependencies :

3. implement rest resources

now that we're able to create our first rest application using spring.

we're going to implement a very basic payment api which charges customers for buying items.

our api will only accept json requests and respond back with json responses thanks to the jackson library, which allows us to deal with requests and responses as pojo classes without worrying about json/pojo conversions.

following is the payment request class which should be submitted by clients on each payment request:

package com.programmer.gate;

public class paymentrequest {

 private int userid;
 private string itemid;
 private double discount;

 public string getitemid() {
  return itemid;
 }

 public void setitemid(string itemid) {
  this.itemid = itemid;
 }

 public double getdiscount() {
  return discount;
 }

 public void setdiscount(double discount) {
  this.discount = discount;
 }

 public int getuserid() {
  return userid;
 }

 public void setuserid(int userid) {
  this.userid = userid;
 }

}

and this is the base response returned back from our service:

package com.programmer.gate;

public class baseresponse {

 private string status;
 private integer code;

 public string getstatus() {
  return status;
 }

 public void setstatus(string status) {
  this.status = status;
 }

 public integer getcode() {
  return code;
 }

 public void setcode(integer code) {
  this.code = code;
 }

}

the most important class in our api is the controller which acts as the interface for client/server communication, each controller acts as a resource which exposes some services and is accessed via specific url.

in our example, we define one resource called paymentcontroller , which exposes the payment service to the customers.

our controller looks like the following:

package com.programmer.gate;

import org.springframework.web.bind.annotation.requestbody;
import org.springframework.web.bind.annotation.requestmapping;
import org.springframework.web.bind.annotation.requestmethod;
import org.springframework.web.bind.annotation.requestparam;
import org.springframework.web.bind.annotation.restcontroller;

@restcontroller
@requestmapping("/payment")
public class paymentcontroller {

 private final string sharedkey = "shared_key";

 private static final string success_status = "success";
 private static final string error_status = "error";
 private static final int code_success = 100;
 private static final int auth_failure = 102;

 @requestmapping(value = "/pay", method = requestmethod.post)
 public baseresponse pay(@requestparam(value = "key") string key, @requestbody paymentrequest request) {

  baseresponse response = new baseresponse();
  if (sharedkey.equalsignorecase(key)) {
   int userid = request.getuserid();
   string itemid = request.getitemid();
   double discount = request.getdiscount();

   // process the request
   // ....
   // return success response to the client.

   response.setstatus(success_status);
   response.setcode(code_success);
  } else {
   response.setstatus(error_status);
   response.setcode(auth_failure);
  }
  return response;
 }
}

the only service exposed by our controller is the pay() method, which looks very straightforward; it validates the client request using a predefined shared key, processes the request and responds back with the operation status.

following are the common annotations used by our controller:

as noticed the response is represented as baseresponse and there is no need to annotate it, jackson converts it implicitly to json.

4. configure the rest api

after implementing our resource and defining the requests and responses of our api, now we need to configure the context url of our api and instruct our servlet container to load the resource on startup. without this configuration section, your resources wouldn't be exposed to clients.

spring 4.3.0 supports several configuration annotations, there is no more need to define configurations in web.xml .

basically, we need to create two classes:

here we go:

package com.programmer.gate;

import org.springframework.context.annotation.componentscan;
import org.springframework.context.annotation.configuration;
import org.springframework.web.servlet.config.annotation.enablewebmvc;

@configuration
@enablewebmvc
@componentscan(basepackages = "com.programmer.gate")
public class applicationconfiguration {


}
package com.programmer.gate;

import org.springframework.web.servlet.support.abstractannotationconfigdispatcherservletinitializer;

public class applicationinitializer extends abstractannotationconfigdispatcherservletinitializer {

 @override
 protected class < ? > [] getrootconfigclasses() {
  return new class[] {
   applicationconfiguration.class
  };
 }

 @override
 protected class < ? > [] getservletconfigclasses() {
  return null;
 }

 @override
 protected string[] getservletmappings() {
  return new string[] {
   "/rest/*"
  };
 }

}

in our example, we're instructing the servlet container to load the resources from the com.programmer.gate package, and we're exposing our api through /rest url.

5. deploy the rest api

now that our api is ready for deployment, so we deploy it on tomcat 1.8/jre8 (if you haven't set up tomcat on eclipse, then follow this guide ).

in order to test our api, we use the advanced rest client plugin from chrome and we initiate 2 different requests:

successful request: in this request we pass a valid shared key as a request parameter along with item details in the request body. this is how it looks:

and this is our response:

{
 "status": "success",
 "code": 100
}

failure request: this request looks similar to the above but with an invalid shared key, this is what we get from our api:

{
 "status": "error",
 "code": 102
}

that's it; i hope you find it useful.

 

 

 

 

Top