configuration file is not getting detected

87 Views Asked by At

I am new in Hibernate and Maven. I want to use hibernateOGM. I can successfully build my code but if I run it I see these Information:

Aug 12, 2013 12:00:15 PM org.hibernate.annotations.common.Version <clinit>
INFO: HCANN000001: Hibernate Commons Annotations {4.0.1.Final}
Aug 12, 2013 12:00:15 PM org.hibernate.Version logVersion
INFO: HHH000412: Hibernate Core {4.1.9.Final}
Aug 12, 2013 12:00:15 PM org.hibernate.cfg.Environment <clinit>
INFO: HHH000206: hibernate.properties not found
Aug 12, 2013 12:00:15 PM org.hibernate.cfg.Environment buildBytecodeProvider
INFO: HHH000021: Bytecode provider name : javassist

my hibernate.cfg.xml and hbm.xml are located in src/main/resources . How can I solve this problem

2

There are 2 best solutions below

1
On

Did you try placing hibernate.cfg.xml in src/main/resources/META-INF ?

1
On

As per your comments you are using

OgmConfiguration cfgogm=new OgmConfiguration(); 
SessionFactory sessionfactory= cfgogm.buildSessionFactory();

try changing it to:

SessionFactory sessionfactory= new AnnotationConfiguration().configure().buildSessionFactory();

Source: http://www.mkyong.com/hibernate/hibernate-error-an-annotationconfiguration-instance-is-required-to-use/