Skip to content

upc-pre-20241-si729-wx55-eabmodel/inncontrol-backend

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Inn Control Platform

Summary

Inn Control Platform, illustrating development with Java, Spring Boot Framework, and Spring Data JPA on MySQL Database. It also illustrates open-api documentation configuration and integration with Swagger UI.

PostMan Commands

Get http://localhost:8080/inventory (Gets all items in inventory) http://localhost:8080/inventory/{id} (Gets a specific item in inventory) http://localhost:8080/inventory/brand?brandName={brandName} (Gets the items with the same brandName)

Post http://localhost:8080/inventory (Posts a new item)

{
"productTitle": "Name",
"productDescription": "Description",
"Brand": "Brand",
"Quantity": QuantityNumber
}

Put http://localhost:8080/inventory/{id} (Updates a specific item in inventory)

{
"productTitle": "Name",
"productDescription": "Description",
"Brand": "Brand",
"Quantity": QuantityNumber
}

Reference Documentation

For further reference, please consider the following sections:

Guides

The following guides illustrate how to use some features concretely:

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published