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

myhibernate.cfg.xmlsrc/main/resourceshbm.xmlにあります。この問題を解決するにはどうすればよいですか

4

2 に答える 2

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 に答える