-->
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: Mapping Problem
PostPosted: Mon Jun 11, 2007 12:01 pm 
Newbie

Joined: Mon Jun 11, 2007 11:55 am
Posts: 3
Hi,

ich hoffe es kann jemand bei der (evtl. einfachen) manyToOne Problematik helfen
2 Klassen:

Code:
@Entity
class productTemplate{
   @Id
   String articlenumber;
   String name;
   ...
}

@Entity
class product{
   @Id
   long productid;
   @ManyToOne(cascade=PERSIST, fetch=FetchType.LAZY)
   @JoinColumn(name="articleNumber",nullable = false)
   ProductTemplate template;
   String articlenumber;
   ...
}


Jedes Produkt hat immer eine Artikelnummer und über die Artikelnummer möglicherweise ein entsprechendes Template. Es können mehrere Produkte mit gleicher Artikelnummer vorhanden sein (unterschiedliche Verkäufer) die von einem Template beschrieben werden.

Mit der obigen Definition gibts folgende Exception:" org.hibernate.MappingException: Repeated column in mapping for entity ..." sowie ein Hinweis "updateable und insertable" auf false zu stellen. Wenn ich den Rat befolge erstellt Hibernate eine Foreign Key Beziehung zwischen den Tabellen, damit kann ich dann keine Produkte mit Artikelnummer ohne Template anlegen.

Ist hier ein Modelfehler drin oder wie läßt sich das lösen?

Vielen Dank,
Thomas


Top
 Profile  
 
 Post subject:
PostPosted: Wed Jun 13, 2007 2:29 pm 
Newbie

Joined: Wed Jun 13, 2007 11:36 am
Posts: 5
Mache die Assoziation optional
Code:
@ManyToOne(optional=true ...

Siehe hierzu: http://java.sun.com/javaee/5/docs/api/j ... ToOne.html


Top
 Profile  
 
 Post subject:
PostPosted: Thu Jun 14, 2007 4:24 pm 
Newbie

Joined: Mon Jun 11, 2007 11:55 am
Posts: 3
Dem Tipp entsprechend:
@ManyToOne(cascade=CascadeType.PERSIST, fetch=FetchType.LAZY, optional=true)
@JoinColumn(name="articleNumber",nullable = false,insertable=false, updatable=false)
ProductTemplate template;



--> der Foreign Key zwischen Product und ProductTemplate bleibt - damit geht weiterhin nicht 1-x Produkte zu 0-1 Produkttemplate (verknüpft über die artikelnummer die bei jedem Produkt vorhanden sein muss).


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.