Problem persisting inheritance tree
- by alaiseca
I have a problem trying to map an inheritance tree. A simplified version of my model is like this:
@MappedSuperclass
@Embeddable
public class BaseEmbedded implements Serializable {
@Column(name="BE_FIELD")
private String beField;
// Getters and setters follow
}
@MappedSuperclass
@Embeddable
public class DerivedEmbedded extends…