I have created a database schema for my webshop (schoolproject). And some things are not clear for me.
What are things I need to take into account when creating a database, regarding the implementation of the database into my API, because I first created the schema's before starting on my API.
Also, when creating new classes, I need to create a class for every entity in my database, is this right? Because if so, do I just copy the columns as attributes for every class/entity? And do I have to take care of the relationships?
I will be using Spring Boot as my backend framework
