Rental Management System with Spring Boot
This system has three functions, auth, search, and rental.
-
Auth
If you are not a member, you cannot use this system. -
Search
Member can browse and search costumes. -
Rental
Members can reserve, rent and return costumes.
This application has been tested for operation in the following environment.
- Java 10
- Gradle 4.9
- MySQL 8.0.11
- You need to setup MySQL
mysql> create database rental_management_system;
mysql> create user springuser identified by 'password';
mysql> grant all privileges on rental_management_system.* to springuser;
- Run the Spring Boot Application
$ ./gradlew bootRun
- Insert the item data
mysql> use rental_management_system;
mysql> source sql/04_insert_item.sql;
- Access to http://localhost:8080