次の構成があります。
<bean id="entityManagerFactory"
class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
<property name="dataSource" ref="jpaDataSource" />
<property name="jpaVendorAdapter">
<bean class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter" />
</property>
<property name="jpaProperties">
<props>
<prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>
<prop key="hibernate.show_sql">true</prop>
</props>
</property>
<property name="packagesToScan">
<list>
<value>com.example.domain</value>
<value>com.example.repositories</value>
</list>
</property>
</bean>
Com.example.domainにGeonameクラスがあります:
@Entity
@Table(name="geonames")
public class Geoname implements Serializable {
@Id
@Column(name="geonameid")
private Long geonameid = null;
}
それでも、実行中に次の例外が発生します。
原因:org.hibernate.AnnotationException:エンティティに識別子が指定されていません:org.hibernate.cfg.InheritanceState.determineDefaultAccessType(InheritanceState.Java:277)at com.example.domain.Geoname at org.hibernate.cfg.InheritanceState.getElementsToProcess( InheritanceState.Java:224)org.hibernate.cfg.AnnotationBinder.bindClass(AnnotationBinder.Java:664)org.hibernate.cfg.Configuration $ MetadataSourceQueue.processAnnotatedClassesQueue(Configuration.Java:3449)at org.hibernate.cfg.Configuration $ MetadataSourceQueue.processMetadata(Configuration.Java:3403)at org.hibernate.cfg.Configuration.secondPassCompile(Configuration.Java:1330)at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.Java:1730)
なぜアイデアがありますか?
サイドノート:私はこのプロジェクトでmongodbとhibernate/mysqlの両方を組み合わせています。
私は次のものを持っていました
import org.springframework.data.annotation.Id;
当然、次のようになります。
import javax.persistence.Id;
@JB Nizetに感謝
私は同じエラーに直面しましたが、それを解決し、Entityクラスのidフィールドに@Id注釈を入れなかったことがわかりました。
@Entity
@Table(name="geonames")
public class Geoname implements Serializable {
@Column(name="geonameid")
private Long geonameid = null;
}
Entityクラスに追加のフィールドがある場合があります。注釈が付けられていないフィールドまたはコンストラクタのように。それらを削除してみてください。それは私のために働いた。
ハッピーコーディング。