antkaynak / Inventory-Management-App

A simple demo application to showcase Spring Data and Spring Boot OAuth2 implementations.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Inventory Management Application

A simple demo application to showcase Spring Data and Spring Boot OAuth2 implementations. This project is made for learning purposes but feel free to pull request!

alt alt alt alt

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

About This Project

  • Static HTML on the front-end and JQuery Ajax for the backend end points.
  • Dynamic HTML template system open for further improvements.
  • OAuth2 Authorization storing with cookie.js and local storage.
  • Responsive data table with sorting mechanism.
  • Search bar for searching specific entries.
  • Editing datas with live feedback.
  • Pagination with spring data and dynamic scroll data loading.

Prerequisites

What things you need to install

Locally installed MySQL or a MySQL server.
You don't need a web server as spring boot provides embedded tomcat.
Compatible IDE, Intellij IDEA recommended for this project.

Installing

For MySQL Database

Just copy the sql code below and run it in your database server.

USE !yourdatabasename!

DROP TABLE IF EXISTS `user`;

CREATE TABLE `user` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `email` varchar(45) NOT NULL,
  `password` varchar(255) NOT NULL,
  `name` varchar(45) NOT NULL,
  `state` varchar(45) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE (`email`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;

DROP TABLE IF EXISTS `item`;

CREATE TABLE `item` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `category` varchar(255) NOT NULL,
  `name` varchar(255) NOT NULL,
  `stock` int DEFAULT 0,
  `description` TEXT,
  PRIMARY KEY (`id`),
  UNIQUE (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;

For Tomcat Application Server


In this project we are using spring boot's own embedded tomcat implementation.
But If you want to use anything else make sure to pack the application correctly.

Deployment

This application staticaly hosts index.html but ofcourse you can use a framework and use the spring boot backend as a microservice.

Built With

Known Bugs

  • When the page reloads and you have the authorization cookie but it is expired the table page flashes for a second.
  • There are no role management , so every user is admin.
  • Mobile support is bugged.
  • Throws exceptions in some extreme use cases.
  • The icons are not working.

Contributing

If you want to contribute to this project you can e-mail me - antkaynak1@gmail.com or you can pull request.

Versioning

This project does not have versioning and made with learning purposes.

Authors

  • Ant Kaynak - Initial work - Github

License

This project is licensed under the MIT License - see the LICENSE.md file for details.

Acknowledgments

Questions

If you have any questions mail me - antkaynak1@gmail.com

About

A simple demo application to showcase Spring Data and Spring Boot OAuth2 implementations.

License:MIT License


Languages

Language:JavaScript 47.6%Language:Java 43.6%Language:CSS 6.9%Language:HTML 2.0%