I want to generate JPA's @Entity
s from database (but I want it to be object oriented). for Example
@Entity
@Table(name = "badges")
public class Badges implements java.io.Serializable {
private Integer id;
private User user;
private String name;
private String date;
It would be cool if it also support ManyToOne, OneToMany, Parent and ManyToMany.
P.S. I tried JBoss Tools(Hibernate Tools) and I did not work for me.