• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Paul Clapham
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Roland Mueller
  • Piet Souris
Bartenders:

ClassCastException while inserting record using Hibernate

 
Ranch Hand
Posts: 74
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have UserDomain class corresponding to table user_domain and having fields userId and domainId.

In a function I have following code:



When I run this code, passing questionId and doaminId as arguments to the function, I am getting exception
java.lang.ClassCastException: java.lang.String
at this line:


What can be the reason for this exception?

Thanks in advance

[ May 19, 2008: Message edited by: Pranav Pal ]

[ May 19, 2008: Message edited by: Pranav Pal ]
[ May 19, 2008: Message edited by: Pranav Pal ]
 
ranger
Posts: 17347
11
Mac IntelliJ IDE Spring
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What are the id types in Java and what hibernate types do you have in your mapping for those ids? Sounds like in one case it is a String and another it is a long or an int.

Mark
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic