• 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
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

Problem using Annotations in 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
Hi

I was trying to get the hibernate sample program running with Annotations. I got sample working fine when it is executed with a *.hbm.xml file. I minimized the usage of hbm.xml file. I get a error as mentioned below. Please check out the error and suggest me how to make it working.

Results with an error :

INFO [Configuration] Configured SessionFactory: null
ERROR [STDERR] Initial SessionFactory creation failed.java.lang.ClassCastException: org.hibernate.validator.event.ValidateEventListener
INFO [[/Hibernate_with_Annotations]] Marking servlet createServlet as unavailable
ERROR [[createServlet]] Allocate exception for servlet createServlet
java.lang.ClassCastException: org.hibernate.validator.event.ValidateEventListener at org.hibernate.cfg.AnnotationConfiguration.buildSessionFactory(AnnotationConfiguration.java:819)


I

 
Ranch Hand
Posts: 434
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi there

In the Hibernate Annotations documentation it says that you should use the fully qualified path name with the addPackage method. Is "events" the fully qualified name?

Might not be the solution but couldn't hurt to check.

Other questions are - what version of Annotations are you using and are you using this with JBoss?

Cheers,
Rachel

 
Hari Dhanakoti
Ranch Hand
Posts: 74
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Let me little a bit clear with my doubt

Is Hibernate possible without the help of *.hbm.xml files ? If so how to get that done ? any samples please.
I am really tired on heading to solve this doubt.
 
Greenhorn
Posts: 18
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Yes, you can use annotation if you do not want to use hbm.xml file. Please refer to this link for more information of annotation
http://docs.jboss.org/hibernate/stable/annotations/reference/en/html_single/
 
Hari Dhanakoti
Ranch Hand
Posts: 74
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks tabiul mahmood !!
let me try to execute the code..
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic