Skip to content

REST Spring Boot and JPA / Hibernate Project - Web Service Store

Notifications You must be signed in to change notification settings

HielSaraiva/project-web-service-store

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Project REST Web Service Store with Spring Boot and JPA / Hibernate

Spring Boot

General Objective

  • Develop a store project using the frameworks Spring Boot and Hibernate.
  • Know the main features of Spring Boot and JPA / Hibernate in practice.
  • Implement basic CRUD operations (CREATE, READ, UPDATE, DELETE).
  • Structure Logical Layers: resource, service, repository, etc.

Technologies Used

REST Architecture

  • A REST API (also called a RESTful API or RESTful web API) is an application programming interface (API) that conforms to the design principles of the representational state transfer (REST) architectural style. REST APIs provide a flexible, lightweight way to integrate applications and to connect components in microservices architectures.
  • REST APIs communicate through HTTP requests to perform standard database functions like creating, reading, updating and deleting records (also known as CRUD) within a resource.

JPA / Hibernate

  • Java Persistence API (JPA) is the Java EE platform standard specification (javax.persistence package) for object-relational mapping and data persistence.
  • To work with JPA it is necessary to include an API implementation in the project (Hibernate).

Spring Framework

  • Java Spring Boot (Spring Boot) is a tool that makes developing web applications and microservices with the Spring Framework easier and faster through three key features:

    1. Autoconfiguration.

    2. An opinionated approach to configuration.

    3. The ability to create standalone applications.

H2 Database

  • H2 is a relational database management system written in Java. It can be embedded in Java applications or run in client-server mode.

Project Overview

Logical Layers Explanation

Microservice Layers

Resource Layer

  • The resource layer is only responsible for the interface, it defines the URLs for the endpoints and secures the application. In addition, it forwards requests to the underlying layer, the service layer.

Service Layer

  • The service layer contains the core logic of the system. All algorithms and data processing are performed in this layer. Data required processes are queried from the layer below, the data access layer.

Data Access Layer (Data Repositories)

  • The data access layer has four tasks: creating, reading, updating and deleting data (CRUD). To hide and unify access to the data sources from service layer, this layer implements a interface for the data from all data sources.

Entities

  • Entity is a lightweight persistence domain object.

Config Package

  • Config Package indicates @Bean methods and processed by the Java container to generate bean definitions and service requests for those beans at runtime.

Another Layer Architecture

Microservice Layers

Domain Model

Domain Model

Domain Instance

Domain Instance

Versions

  • Java 17
  • Spring Boot 3.0.0

Installations of the tools

About

REST Spring Boot and JPA / Hibernate Project - Web Service Store

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages