I have some java classes like,
Class User {
String email;
String name;
String password;
}
Class Point {
int pointForA;
int pointForB;
}
Is there any way to get database table structure(or SQL queries) from these java classes directly? I just want to avoid manual tables' creation in database. Thanks in advance.