Hi there,
I'm trying to get a composite-id to work with liquibase but I can't get it done.
- <hibernate-mapping package="com.my.domain">
- <class dynamic-insert="true" dynamic-update="true" name="ExamFormAttribute" table="exam_form_attribute">
- <!-- Database identity -->
- <composite-id>
- <!--<key-property name="form" />-->
- <key-many-to-one name="form" column="form" class="com.my.domain.ExamForm" />
- <key-many-to-one name="attribute" column="attribute" class="com.my.domain.ExamAttribute" />
- </composite-id>
- <property name="attOrder" type="integer"/>
- </class>
- </hibernate-mapping>
Any idea?org.hibernate.MappingException: entity class not found: com.my.domain.ExamFormAttributeat org.hibernate.mapping.PersistentClass.getMappedClass(PersistentClass.java:137)