I have Java Spring project which is using CrudRepository for the entities in the DB (postgresql).
I need to have a quick way to use the entities definitions in order to create the DB tables and constraints, I don't want to use SQL queries to do that, or Java code.
Also, I want to create a populator for these entities with fake data, using maven plugin.
I was looking in the WEB to find best practices to reach above functionality and I couldn't find.