This is an E-commerce fullstack application using React JS and Java Springboot.
We have Category entity to store categories.
+ categoryId
+ categoryName
Under each category, we have multiple products.
+ productId
+ productName
+ description
+ image
+ quantity
+ price
+ discount
+ category (Many to One)
We have users entity to store user details.
+