0

我是 Hibernate 和 Maven 的新手。我想使用hibernateOGM。我可以成功构建我的代码,但如果我运行它,我会看到以下信息:

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

我的hibernate.cfg.xmlhbm.xml位于src/main/resources。我怎么解决这个问题

4

2 回答 2

0

你试过放进hibernate.cfg.xmlsrc/main/resources/META-INF吗?

于 2013-08-12T10:13:48.523 回答
0

根据您正在使用的评论

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

尝试将其更改为:

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

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

于 2013-08-12T11:01:12.420 回答