Inheritance concept in jpa
- by megala
I created one table using Inheritance concept to sore data into google app engine datastore.
It contained following coding but it shows error.How to user Inheritance concept.What error in my program
Program 1:
@Entity
@Inheritance(strategy=InheritanceType.JOINED)
public class calender {
@Id
private String EmailId;
@Basic
private String…