I have created a JPA project. In that Eclipse displays the following error on the entity class.
JPA
Class \"model.Address\" is listed in the
It should be written like:
@Entity **@Table(name="Address",schema="ABCD")** `
...or it could be written like :
@Entity public class Address { }