我正在尝试在我的项目中实现ElcipseLink JPA2.0继承。 无法使用注释。只有xml映射。
这是我的代码。 公共类DefaultEntity {
}
public class SpecialEntity extends DefaultEntity {
public String name;
public int age;
}
public class AnotherSplEntity extends DefaultEntity {
long ts;
String pkey;
}
public class MyPersistableEntity {
public DefaultEntity de;
public void setMyPersistableEntity(DefaultEntity de) {
// any subclass can be assigned here.
this.de = de
}
这是我的ORM.xml
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<entity-mappings xmlns="http://www.eclipse.org/eclipselink/xsds/persistence/orm" version="2.3">
<persistence-unit-metadata>
<exclude-default-mappings />
</persistence-unit-metadata>
<entity class="MyPersistableEntity">
<attributes>
<one-to-one name="de">
<cascade>
<cascade-all />
</cascade>
</one-to-one>
</attributes>
</entity>
<mapped-superclass class="DefaultEntity">
<attributes>
<id name="id" attribute-type="long">
<generated-value strategy="SEQUENCE" />
</id>
</attributes>
</mapped-superclass>
<entity class="SpecialEntity" >
<attributes>
<id name="id" attribute-type="long">
<generated-value strategy="SEQUENCE" />
</id>
<basic name="name" attribute-type="String" />
<basic name="age" attribute-type="int" />
</attributes>
</entity>
</entity-mappings>
我一直在努力 “在关系属性[field de]”
中使用非实体[类DefaultEntity]作为目标实体如何让EclipseLink识别分配的实际类并使用该映射?
任何想法?最重要的是,可以使用EcliseLink完成吗?
感谢 戈皮
答案 0 :(得分:1)
如果您希望引用为SpecialEntity,则需要设置目标实体
请参阅, http://en.wikibooks.org/wiki/Java_Persistence/Relationships#Target_Entity
或者更好,只需将字段类型更改为SpecialEntity。
如果它可以是,那么你不能使用MappedSuperclass,你需要创建DefaultEntity和Entity并映射继承。
答案 1 :(得分:0)
终于找到了办法。 所以我替换为Abstract类创建了一个。不确定它是否是EclipseLink的错误。另一个问题是使用生成值策略“SEQUENCE”(可能是其他人)没有正确生成序列。
我的眼睛看起来像下面
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<entity-mappings
xmlns="http://www.eclipse.org/eclipselink/xsds/persistence/orm" version="2.3">
<persistence-unit-metadata>
<exclude-default-mappings />
</persistence-unit-metadata>
<entity class="ABC">
<table name="" />
<attributes>
<id .......>
</id>
<basic name="ts" attribute-type="long" />
<one-to-one name="field-referring-to-abstract-class" >
<join-column name="ABSTRACT_ID"/>
<cascade>
<cascade-all />
</cascade>
</one-to-one>
</attributes>
</entity>
<entity class="ABSTRACT-CLASS" >
<table name="ABSTRACT-TABLE"/>
<inheritance strategy="TABLE_PER_CLASS" />
<attributes>
<id name="ABSTRACT_ID" attribute-type="String" >
<column name="ABSTRACT_ID" />
</id>
</attributes>
</entity>
<entity class="SUB-CLASS1-TO-ABSTRACT" access="FIELD">
<table name="SUBCLASS1"/>
<attributes>
<basic name="name" attribute-type="String" />
<basic name="age" attribute-type="int" />
</attributes>
</entity>
<entity class="SUB-CLASS2-TO-ABSTRACT" access="FIELD">
<table name="SUBCLASS2"/>
<attributes>
<basic name="city" attribute-type="String" />
<basic name="zipcode" attribute-type="int" />
</attributes>
</entity>
</entity-mappings>
所以,这是存储到适当的表,因为我们提供的读取提供了我提供的子类中的PK保持唯一性。
希望这会有所帮助 谢谢 戈皮