https://github.com/kushshriv/inventory-management-system-spring
Medium Scale Inventory Management System build with MySQL and Java Spring Boot, with a simple Python Streamlit Frontend.
https://github.com/kushshriv/inventory-management-system-spring
java mysql python spring spring-boot streamlit
Last synced: 5 months ago
JSON representation
Medium Scale Inventory Management System build with MySQL and Java Spring Boot, with a simple Python Streamlit Frontend.
- Host: GitHub
- URL: https://github.com/kushshriv/inventory-management-system-spring
- Owner: KushShriv
- Created: 2024-08-20T17:02:46.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-29T14:38:58.000Z (almost 2 years ago)
- Last Synced: 2025-07-19T19:21:26.058Z (11 months ago)
- Topics: java, mysql, python, spring, spring-boot, streamlit
- Language: Java
- Homepage:
- Size: 3.53 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Inventory Management System using Spring
> Team 1 College DBMS Project
The Inventory Management System is a Spring Boot-based application designed to handle inventory operations for a company.




It features modules for managing:
- Units
- Items
- Addresses
- Companies
- Branch Locations
- Purchase Invoices
- Sales Invoices.
The system uses a `MySQL database` to store data and supports `CRUD Operations`. The backend is built using `Java`, `Spring Boot`, and `JPA` for database interactions.
The application includes validation mechanisms to ensure data integrity and handles various aspects such of inventory management such as:
- Tracking stock quantities
- Managing purchase and sales invoices
- Monitoring item expiration dates.
---
## Diagrams

Relational Schema Diagram

ER Diagram
---
## Run the Project
### Dependencies
- JDK 17 :coffee:
- Maven 3.9.4 :feather:
- Spring Boot 3.1.4 :leaves:
- Python Streamlit :crown:
### Setup
1. Clone this repository
```
git clone https://github.com/KushShriv/Inventory-Management-System-Spring.git
```
2. Create the Databases: Download mysql, run `mysql -u root -p` and open the `mysql terminal`, then run
```
source PathToRepo/createTables.sql
```
3. Build & Run Backend
```
mvn clean install
mvn clean compile
mvn spring-boot:run
```
4. Run Frontend
Install streamlit in a virtual env and run this command:
```
streamlit run frontend.py
```