Re: [appfuse-user] IllegatlArgumentException with hibernate

2007-03-01 Thread 23455432
I get the same error with id removed from those methods. IllegalArgumentException occurred calling getter of org.appfuse.model.Person.id; nested exception is org.hibernate.PropertyAccessException: IllegalArgumentException occurred calling getter of org.appfuse.model.Person.id Could it be that

Re: [appfuse-user] IllegatlArgumentException with hibernate

2007-03-01 Thread Matt Raible
If you remove id from your equals, toString() and hashCode() methods, does that solve anything? Matt On 3/2/07, 23455432 <[EMAIL PROTECTED]> wrote: Here it is. I am sorry if I happened to ignore any code posting rules. I am not aware of any as of now package org.appfuse.model; import jav

Re: [appfuse-user] IllegatlArgumentException with hibernate

2007-03-01 Thread 23455432
Here it is. I am sorry if I happened to ignore any code posting rules. I am not aware of any as of now package org.appfuse.model; import java.io.Serializable; import java.util.List; import org.apache.commons.lang.builder.CompareToBuilder; import org.apache.commons.lang.builder.EqualsBuilder

Re: [appfuse-user] IllegatlArgumentException with hibernate

2007-03-01 Thread Matt Raible
Can you post your Person.java? On 3/1/07, 23455432 <[EMAIL PROTECTED]> wrote: I have the following setup: User has one to many calls, user has many to many roles, user has one to many persons, call has many to many persons I am trying to model the call to person (many to many) the same way a

[appfuse-user] IllegatlArgumentException with hibernate

2007-03-01 Thread 23455432
I have the following setup: User has one to many calls, user has many to many roles, user has one to many persons, call has many to many persons I am trying to model the call to person (many to many) the same way as the user to roles. When I create a new call object and try to save it I ge