-->
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: @ManyToMany and extra fields in link table
PostPosted: Thu Jan 04, 2007 5:37 pm 
Newbie

Joined: Mon Sep 26, 2005 1:01 pm
Posts: 5
After searching this forum, it appears that everyone suggest mapping two @ManyToOne mappings to an Entity object for the link table, but I also know in XML mapping before we could use a composite object instead like


Code:
<class name="Category" table="CATEGORY">

    <set name="items" table="CATEGORY_ITEMS">
      <key column="CATEGORY_ID"/>
      <composite-element class="CategorizedItem">
          <parent name="category"/>
          <many-to-one name="item" class="Item"
                       column="ITEM_ID" not-null="true"/>
          <property name="username" column="USERNAME" not-null="true"/>
          <property name="dateAdded" column="DATE_ADDED" not-null="true"/>
        </composite-element>
    </set>

</class>


Is there an equivalent to that in Annotations, even if it is Hibernate Specific as opposed to JPA.

Thanks


Top
 Profile  
 
 Post subject:
PostPosted: Thu Jan 04, 2007 6:15 pm 
Hibernate Team
Hibernate Team

Joined: Mon Aug 25, 2003 9:11 pm
Posts: 4592
Location: Switzerland
http://caveatemptor.hibernate.org/

_________________
JAVA PERSISTENCE WITH HIBERNATE
http://jpwh.org
Get the book, training, and consulting for your Hibernate team.


Top
 Profile  
 
 Post subject: Re
PostPosted: Thu Jan 04, 2007 6:17 pm 
Newbie

Joined: Mon Sep 26, 2005 1:01 pm
Posts: 5
Thanks Christian, I will download the newest version of caveatemptor.


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.