Developing an E-Commerce Application Using Java and Spring

Written by webtutsplustutorials | Published 2021/01/01
Tech Story Tags: web-development | java | spring-boot | ecommerce-web-development | backend | ecommerce | app-development | programming

TLDRvia the TL;DR App

We are going to build an e-commerce application using Java, Spring backend, build web UI in Vue.js, and mobile UI using android.
Every e-commerce platform needs users, so in the first tutorial, we are going to create and display user-profiles. We are going to first build the backend APIs using Java and Springboot, then we are going to create UI in Vue.js and android mobile app.

Live Demo

You can test the API at the following swagger link. You can create and list all the users.

About Spring Framework

The Spring Framework is a major open-source Java/J2EE application development framework for more productive application development. It is the most popular Java framework with a 30% share of usage. The Spring Framework features enable efficient development from simple Web to complex enterprise applications.
The main concepts that the Spring Framework depends on are:
Dependency Injection (DI)Aspect-Oriented Programming (AOP)Java Persistence API (JPA)

Prerequisites

  1. Knowledge in Core Java
  2. Coding skills
  3. Knowledge in Servlet and JSPJ
  4. ava Development Kit (JDK)
  5. IntelliJ IDEA Ultimate — open-source (recommended)
  6. MySQL database — You can get it here!
  7. A good browser (Chrome — recommended)
Make sure you have all the listed prerequisites software installed and have basic knowledge of the request-response cycle as well as web containers. What more? Let’s jump into the tutorial!

Project Setup

Open Spring Tool Suite applicationNavigate to your workspaceClick File -> New -> Project ->Spring Starter ProjectGive the essential data in the opened dialog box

Dependencies

The dependencies I am adding to this project are given below. You can either add them during the creation of the project itself or later search for them in the Maven repository and add the tags of the required version in the pom.xml file.
  • Spring boot starter web
  • Tomcat embed jasper
  • Spring boot starter Data JPA
  • Mysql connector java
  • Spring boot starter test
  • Swagger 2
  • Swagger UI

Project Hierarchy

The hierarchy is the important thing to notice in the Spring boot Application design structure. My project hierarchy is as below.

Overview of our Backend Application

In this Spring Application following are important packages that you have to know before starting.
This is the spring architecture. The outside world calls the REST Apis, which interacts with the Service. Service calls the repository. The repository interacts with the database. We follow this pattern to make the codebase maintainable, instead of having spaghetti code which can be a nightmare in long term.
Let's look at first Rest controllers

Controller

The User Controller class provides two HTTP methods GET and Post. The Get mapping function return a complete list of Users and the Post Mapping Function saves the new user profile in the Database.
As we can see UserControllers has a reference to UserService.

Service

As we know the spring boot framework follows the POJO model and every controller has its own service interface, which provides the methods / operation that is performed in the application.
In service class, there are only two methods list Profiles and add Profiles, which provide information. We can extend or add more functionality in the future according to requirements.
Service calls UserProfileRepository which interacts with the database in form of models. Let's have a look at UserModel.

Model

The model class is a mirror of the user_profile table in the database in form of a java object. All attributes can be accessed through this class. You can also update the attribute values using the model class, which also makes changes in a database table.

What is Swagger

Swagger is an Interface Description Language for describing RESTful APIs expressed using JSON. Swagger is used together with a set of open-source software tools to design, build, document, and use RESTful web services. Swagger includes automated documentation, code generation, and test-case generation.
You can access the application documentation by entering the following URL in your browser.
You can edit your API information in documentation.swaggerConfig.java class and getApiInfo() method.
Swagger is very useful on the developer side because it provides very user-friendly API information as well as provide a way to test the API.
Now we are going to look at some extra classes, which play an important role too.

common

In this package, there are two classes
ApiResponse.java
This class provides the status of API response. It has three methods is Success (), get Message (), get Timestamp (). The get Timestamp () method returns the Current Date and Time in String format.
PagedList.java
This class contains all the information about the pages in the List data structure and provides total Pages, total Elements, has Next, has Previous attributes getter and setter.

Config

In these packages, there are two sub-packages named documentation and security.
Documentation
In this Package, it provides information about the product and API.
Product API method provides information about the product and gets the API Info method return information about API like contact, Title, version, license.

Security

This class is very important for applications because it provides the basic security for the whole application over HTTP or HTTPS protocol. It also implements configuration for users that which users have access to which pages or repositories.

Exception

This class is used in case of exception in any stage of the application. It has two classes Exception handler and validation exception, which throws when there is a validation error in the application at run time.
ExceptionHandlerAdvice.java
ValidationException.java
Hope you had a great session with us! Follow us for such great and awesome tutorials!
Happy learning! : )

Published by HackerNoon on 2021/01/01