-->
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.  [ 2 posts ] 
Author Message
 Post subject: Maping with join table
PostPosted: Wed Apr 26, 2006 10:20 am 
Regular
Regular

Joined: Thu May 12, 2005 10:12 am
Posts: 71
Location: Buenos Aires, Argentina
Hi, I have the following legacy DB schema

Table: CATEGORY
CategoryID
Name

Table: MINUTESBAG
MinutesBagID
Description
Minutes

and a join table that has some more properties:
CATEGORY_MINUTESBAG
CategoryID (FK)
MinutesBagID (FK)
PropA
PropB

I browsed the web and it seems that the best way to do this is to actually have 3 classes, one for each table. I was wondering if there was a way to map the properties of the CATEGORY_MINUTESBAG to the Category class using the join tag (which I have trouble using).

If there is no way to do this, how do I go and set the composite key for the CategoryBag class?

Any help or pointer appreciated. Thanks


Top
 Profile  
 
 Post subject:
PostPosted: Wed Apr 26, 2006 4:03 pm 
Expert
Expert

Joined: Tue Apr 25, 2006 12:04 pm
Posts: 260
Use the following mapping files

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

<hibernate-mapping>
<class name="Category" table="Category">
   <id name="CategoryID" column="CategoryID"/>
   <property name="name" column="name"/>
</class> 


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

<hibernate-mapping>
<class name="MinutesBag" table="MinutesBag">
   <id name="MinutesBagID " column="MinutesBagID "/>
   <property name="minutes " column="Minutes "/>
   <property name="description " column="Description "/>
</class>


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

<hibernate-mapping>
<class name="CategoryMinutesBag" table="CategoryMinutesBag">
   <composite-id name="catgMinutesBagPK" class="CatgMinutesBagPK">
       <key-many-to-one name="category" class="Category">
          <column name="CategoryID"/>
       </key-many-to-one>
       <key-many-to-one name="minutesBag" class="MinutesBag">
          <column name="MinutesBagID"/>
       </key-many-to-one>
   </composite-id>
   <property name="propA" column="PropA"/>
   <property name="propB" column="PropB"/>
</class>


Remember for the third mapping file you need to have additional Java class CatgMinutesBagPK which implements Serializable interface. Also override equals() and hashcode() methods in this Primary Key class. For help use EqualsBuilder and HashcodeBuilder from commons-lang library.

HTH,


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 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.