I am writing Spring Boot application in intelliJ-IDEA, and have database with many tables on MySQL server. I generated Entity classes from database (Hibernate).
Is there a way to generate Repository classes from Entity classes, and then to generate RestController classes from Repository classes?
Or is there a way to generate RestController classes directly from Entity classes or from database?
I don't want to write all that RestController classes for whole database.