未检测到配置文件

时间:2013-08-12 10:04:33

标签: java hibernate maven hibernate-ogm

我是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 中。我该如何解决这个问题

2 个答案:

答案 0 :(得分:0)

您是否尝试将hibernate.cfg.xml放入src/main/resources/META-INF

答案 1 :(得分: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/