I have a sql script that contains DDL to create a large number of tables, just execute this script to create tables in db.
Now I want to use hibernate to perform the CURD operations in these tables, but for each table it will take time to create the POJO. So, is there a way to generate these POJOs with JPA annotations using those DB tables that are already created?
Please help me.
Pawan source
share