これが私のコードです:
Configuration config = new Configuration().configure();
与える:
org.hibernate.MappingException: An AnnotationConfiguration instance is required to use <mapping class="com.google.musicstore.domain.Record"/>
結構です...代わりに org.hibernate.cfg.AnnotationConfiguration を使用しようとします:
Configuration config = new AnnotationConfiguration().configure();
しかし、そのクラスは非推奨です。ドキュメントでは、代わりに Configuration を使用するように指示されています!
補足として、AnnotationConfiguration オプションも失敗し、次のようになります。
Caused by: java.lang.IncompatibleClassChangeError: Implementing class
ここに私の pom.xml があります:
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-search</artifactId>
<version>4.3.0.Final</version>
</dependency>
助けてください!!!