我有以下@MappedSuperClass和@Entity:
@MappedSuperclass
public class SuperClass implements Serializable {....}
@Entity
@Inheritance(strategy=InheritanceType.TABLE_PER_CLASS)
@Table(name = "TABLE1")
public class Table1 extends SuperClass implements Serializable {...}
@Entity
@Inheritance(strategy=InheritanceType.TABLE_PER_CLASS)
@Table(name = "TABLE2")
public class Table2 extends SuperClass implements Serializable {...}
在数据库中,两个表都有相同的列,所以我的所有属性都在SuperClass:中
@Id
private String attr1;
@Id
private String attr2;
@Column(name="DATA")
private String data;
// getters and setters
但是,当我尝试用一个@entity(table1或table2)执行查询时,我会得到一个OpenJPA错误:
Error pre-processing class table1 with weblogic.deployment.PersistenceUnitInfoImpl$ClassPreProcessorImpl@205c54b'
<openjpa-1.1.0-r422266:657916 fatal user error>
org.apache.openjpa.util.MetaDataException: Type "class SuperClass" with application identity and no superclass does not declare an id class.
This type is not eligible for builtin identity, so it must declare an id class.
我不明白为什么在@Entity类中找不到属性@Id。
如果有人有任何想法,请随时帮助我:)
问候,
Cytemax
感谢您在评论中回答这个Cytemax。我在这里找到了更多关于clarafification的信息:http://openjpa.apache.org/builds/1.0.0/apache-openjpa-1.0.0/docs/manual/manual.html#jpa_overview_pc_identitycls
给出的例子没有使用注释,但您在评论中提到了它们。对于openJPA来说,这是一件很奇怪的事情,但当我在脑海中查看表和java对象层次结构时,这有点道理。
我的@Entity类必须有一个@IdClass(SuperClassPK.class),因为我的主键包含两个属性(attr1&attr2)。
这个@IdClass声明了这两个属性,并且必须重写"equals"one_answers"hashcode"方法。
也许这会帮助其他人;)。