Skip to content

πŸ“š This is a SpringBoot project. It is a simple Library management system with many users and a large book collection, where members of library can borrow these books.

Notifications You must be signed in to change notification settings

marinstrba/Library-Management-System

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

13 Commits
Β 
Β 
Β 
Β 

Repository files navigation

Library Management System

This is a a simple SpringBoot project. It is an Implementation of how library works. User can create an account and choose how many books he wants to borrow on a checkout. He can have as many books as he wants and can have as many checkout as he wants.

Used technologies:

SpringBoot
PostgreSQL
Maven
Hibernate

Database

+------------+-------------------+---------+
| Field | Type | Notes |
+------------+-------------------+---------+
| Id | Integer (PK) | |
| name | String | |
| surname | String | |
| email | String | |
| age | Integer | |
+------------+-------------------+---------+
|
|
|
|
|
/|\
+----------------+-------------------+---------------------------------+
| Field | Type | Notes |
+----------------+-------------------+---------------------------------+
| Id | Integer (PK) | |
| userId | Integer (FK) | References User(Id) |
| expirationDate | LocalDate | |
| numberOfBooks | Integer | |
| isReturned | Boolean | |
+----------------+-------------------+---------------------------------+
|
|
|
|
|
/|\
+------------------+-------------------+---------------------------------+
| Field | Type | Notes |
+------------------+-------------------+---------------------------------+
| Id | Integer (PK) | |
| checkOutId | Integer (FK) | References CheckOut(Id) |
| isAvailable | Boolean | |
| title | String | |
| author | String | |
| storyDescription | String | |
| publisher | String | |
| publishYear | Integer | |
+------------------+-------------------+---------------------------------+

About

πŸ“š This is a SpringBoot project. It is a simple Library management system with many users and a large book collection, where members of library can borrow these books.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published