-->
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: Many to one relation
PostPosted: Thu Jan 10, 2008 12:43 pm 
Newbie

Joined: Thu Jan 10, 2008 10:57 am
Posts: 2
I am "kind of" new to the hibernate community.

I try to fill 3 tables that are connected each other like that:

1. DataType table (1-N associated with Capability table)
2. CapabilityType table (1-N associated with Capability table)
3. Capability table (N-1 associated with DataType table,
N-1 associated with CapabilityType table)

The Capability table has
    ID(PK)
    Name
    Accuracy
    Units
    CapabilityTypeID(FK to CapabilityType.ID )
    DataTypeID(FK to DataType.ID )


The first 2 tables are filled properly with values I provide but I get the following error while the last table(Capability) is going to be filled:

org.hibernate.property.BasicPropertyAccessor$BasicGetter get
SEVERE: IllegalArgumentException in class: logic.CapabilityType, getter method of property: ID
Exception in thread "main" org.hibernate.PropertyAccessException: IllegalArgumentException occurred calling getter of logic.CapabilityType.ID


I have to say here that the Database is properly built, the java file of entities seems right and the mapping XML files seem right also.

Thanks in advance!


Top
 Profile  
 
 Post subject:
PostPosted: Thu Jan 10, 2008 2:56 pm 
Newbie

Joined: Tue Apr 10, 2007 10:40 am
Posts: 8
What does your Capability.getID() method look like? Could it be throwing an IllegalArgumentException?


Top
 Profile  
 
 Post subject:
PostPosted: Fri Jan 11, 2008 10:24 am 
Newbie

Joined: Thu Jan 10, 2008 10:57 am
Posts: 2
No. The error was not there.

I found was going wrong!

Actually, I had defined the two foreign keys as integers!This was wrong, You have to define the type of each foreign key like the associated entity's name.

For example, CapabilityTypeID which is the foreign key to the table CapabilityType had to be type of CapabilityType and not integer!

The same with DataTypeID.

That is how hibernate works!! I hope it was easier to understand..

Anyway thanx for your help!


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.