-->
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: Can I create a hibernate-mapping file w/o an id tag?
PostPosted: Tue Oct 26, 2004 10:39 am 
Newbie

Joined: Tue Oct 26, 2004 10:29 am
Posts: 6
I don;t want to use an id. My primary key will be that tracking number. How do I avoid this 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*))".


<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD 2.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd">

<hibernate-mapping>

<class name="gsptech.autopay.biz.MyAWB" table="AWB2">
<property name="trackingNumber" column="TRACKING_NBR" type="string" length="12" />
<property name="shipTimestamp" column="SHIP_TMSP" type="timestamp" />
<property name="originationLocID" column="ORIGINATION_LOC_CD" type="string" length="5" />
<property name="docNonDocFlag" column="DOC_NONDOC_FLG" type="character" />
<property name="dimWeight" column="DIM_WEIGHT_NBR" type="long" />
<property name="recipient" column="PACKAGE_RECIPIENT_NM" type="string" length="50" />
</class>
</hibernate-mapping>


Top
 Profile  
 
 Post subject:
PostPosted: Tue Oct 26, 2004 11:31 am 
Newbie

Joined: Wed Apr 28, 2004 2:12 pm
Posts: 6
Move your tracking number property into the <id> element, and use the "assigned" generator type.


Top
 Profile  
 
 Post subject: Thanks
PostPosted: Tue Oct 26, 2004 11:40 am 
Newbie

Joined: Tue Oct 26, 2004 10:29 am
Posts: 6
That did the trick


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.