-->
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.  [ 5 posts ] 
Author Message
 Post subject: Problem with Exception - incompatible with java.util.Set
PostPosted: Sun Apr 01, 2007 7:29 pm 
Newbie

Joined: Mon Mar 26, 2007 10:48 am
Posts: 13
Hi,

i get always this Exception:

Code:
Exception in thread "AWT-EventQueue-1" java.lang.ClassCastException: admintool.data.Diagnose$$EnhancerByCGLIB$$48bb0b3e incompatible with java.util.Set


Behandlung.hbm.xml:
Code:
<hibernate-mapping>
<class name="admintool.data.Behandlung" table="behandlung">
<id name="id" column="id" type="java.lang.Integer">
   <generator class="increment"></generator>
</id>
<set name="diagnose_nr">
   <key column="diagnose_nr"/>
   <one-to-many class="admintool.data.Diagnose"/>
</set>
   <many-to-one name="krankenhaus_nr" column="krankenhaus_nr" class="admintool.data.Krankenhaus"/>
</class>
</hibernate-mapping>


Diagnose.hbm.xml:
Code:
<hibernate-mapping>
<class name="admintool.data.Diagnose" table="diagnose">
<id name="id" column="id" type="java.lang.Integer">
   <generator class="increment"></generator>
</id>
   <many-to-one name="krankenhaus_nr" column="krankenhaus_nr" class="admintool.data.Krankenhaus"/>
   <many-to-one name="patient_nr" column="patient_nr" class="admintool.data.Patient"/>
</class>
</hibernate-mapping>


i think the error is the relation one-to-many with set or something like this:/

a Diagnose = diagnosis
a Behandlung = treatment

one treatment has more diagnosis!!!

i hope someone is able to help me -

triplex


Top
 Profile  
 
 Post subject:
PostPosted: Mon Apr 02, 2007 5:41 am 
Newbie

Joined: Mon Mar 26, 2007 10:48 am
Posts: 13
*push*

pls:)


Top
 Profile  
 
 Post subject: Kindly paste the model class
PostPosted: Mon Apr 02, 2007 6:33 am 
Beginner
Beginner

Joined: Thu Feb 01, 2007 3:08 am
Posts: 20
Kindly paste the model class . I thinku are using some other Set class in your model like org.hibernate.mapping.set .

Chek it.

PS : please don't forget to give credits below if you found this answer useful :)


regards
Gokul


Top
 Profile  
 
 Post subject:
PostPosted: Mon Apr 02, 2007 7:09 am 
Newbie

Joined: Mon Mar 26, 2007 10:48 am
Posts: 13
My modelclass ...

Code:
public class Behandlung {
   
   private int id;
   private Krankenhaus krankenhaus_nr;
   private Diagnose diagnose_nr;
   public Behandlung(){
   }
   public Diagnose getDiagnose_nr() {
      return diagnose_nr;
   }
   public void setDiagnose_nr(Diagnose diagnose_nr) {
      this.diagnose_nr = diagnose_nr;
   }
   public int getId() {
      return id;
   }
   public void setId(int id) {
      this.id = id;
   }
   public Krankenhaus getKrankenhaus_nr() {
      return krankenhaus_nr;
   }
   public void setKrankenhaus_nr(Krankenhaus krankenhaus_nr) {
      this.krankenhaus_nr = krankenhaus_nr;
   }
}


i will give u credits sure;)

lg


Top
 Profile  
 
 Post subject:
PostPosted: Mon Apr 02, 2007 7:14 am 
Beginner
Beginner

Joined: Thu Feb 01, 2007 3:08 am
Posts: 20
<set name="diagnose_nr">
<key column="diagnose_nr"/>
<one-to-many class="admintool.data.Diagnose"/>
</set>


Above is a one to many relationship ... so hibernate wil retuena set of admintool.data.Diagnose objects.

So use private Set diagnose_nr; instead of private Diagnose diagnose_nr;


regards
Gokul


PS : please don't forget to give credits below if you found this answer useful :)


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