Hallo Allerseits,
ich habe schon einen großen Teil eines Datenmodels in Hibernate, habe jedoch ein Problem. Das Datenmodel enthält Metadaten für Express, eine Klassen hat dabei eine Liste mit Attributen, die Reihenfolge ist wichtig.
In Java sieht das so aus:
public class EntityDataType extends DataType {
private List declaredAttributes = new ArrayList();
...
}
public class AttributeType {
private EntityDataType entityType;
protected DataType type;
...
}
Das Mappin sieht so aus
<hibernate-mapping>
<class name="com.prostep.part11.DataType" table="DATA_TYPE">
<joined-subclass name="com.prostep.part11.EntityDataType" table="ENTITY_DATA_TYPE">
<key column="DATA_TYPE_ID"/>
<list name="declaredAttributes" >
<key column="ATTRIBUTE_ID"/>
<index column="idx"/>
<one-to-many class="com.prostep.part11.AttributeType"/>
</list>
</joined-subclass>
<hibernate-mapping>
<class name="com.prostep.part11.AttributeType" table="ATTRIBUTE_TYPE">
<id name="id" column="ATTRIBUTE_ID">
<generator class="assigned"/>
</id>
<many-to-one name="type" column="TYPE" not-null="true"/>
<many-to-one name="entityType" column="ENTITY_TYPE" class="com.prostep.part11.EntityDataType" not-null="true"/>
Beim Laufen des Beispiels bekomme ich
08:01:53,610 ERROR JDBCExceptionReporter:72 - failed batch
2113 [main] ERROR org.hibernate.util.JDBCExceptionReporter - failed batch
08:01:53,610 ERROR AbstractFlushingEventListener:300 - Could not synchronize database state with session
org.hibernate.exception.GenericJDBCException: Could not execute JDBC batch update
at org.hibernate.exception.SQLStateConverter.handledNonSpecificException(SQLStateConverter.java:103)
Kann mir jemand eine Tip geben, was ich da mit dem Mapping falsch mache ?
Danke, Carsten
|