-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 3 posts ] 
Author Message
 Post subject: inheritance mapping problem
PostPosted: Tue Jun 15, 2004 8:54 am 
Newbie

Joined: Tue Jun 15, 2004 6:55 am
Posts: 3
Hi,

I'm trying to get a small inheritance example working, but it seems to be that my mapping document is missing something. When I try to run my example I get the following error :

Caused by: org.xml.sax.SAXParseException: The content of element type "class" must match "(meta*,(cache|jcs-cache)?,(id|composite-id),discriminator?,(version|timestamp)?,(property|many-to-one|one-to-one|component|dynamic-component|any|map|set|list|bag|idbag|array|primitive-array)*,(subclass*|joined-subclass*))".
at org.apache.xerces.util.ErrorHandlerWrapper.createSAXParseException

Could anyone tell me what is missing in the following mapping document :

<hibernate-mapping>
<class name="org.hibernate.test.Parent" table="Parent" >
<id name="id" unsaved-value="0">
<generator class="uuid.string"/>
</id>

<property name="parentString" column="ParentString" type="string"/>
<property name="type" column="type" type="character"/>

<discriminator column="type" type="character"/>

<subclass name="org.hibernate.test.ChildA" discriminator-value="A">
<property name="childAString" type="string"/>
</subclass>

</class>

</hibernate-mapping>



Thanks!!!


Top
 Profile  
 
 Post subject:
PostPosted: Tue Jun 15, 2004 8:58 am 
Beginner
Beginner

Joined: Mon Sep 29, 2003 10:32 pm
Posts: 35
Location: Toronto, Ontario
Try putting the <discriminator> element before any of the <property> elements.


Top
 Profile  
 
 Post subject:
PostPosted: Tue Jun 15, 2004 1:02 pm 
Newbie

Joined: Tue Jun 15, 2004 6:55 am
Posts: 3
Yep, that solved my problem!!!

Thanks!!!


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 3 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.