我在一个SpringBoot项目中遇到这个错误。我运行的查询一直在工作,直到我试图将一个Consumer实体保存到Spring JPA数据库。你有什么办法来修复这个错误吗?我想这可能与类的设置方式有关。
错误消息:
org.springframework.beans.factory.BeanCreationException: Error
creating bean with name 'entityManagerFactory' defined in class path
resource
[org/springframework/boot/autoconfigure/orm/jpa/HibernateJpaConfiguration.class]:
Invocation of init method failed; nested exception is
javax.persistence.PersistenceException: [PersistenceUnit: default]
Unable to build Hibernate SessionFactory; nested exception is
org.hibernate.MappingException: Could not determine type for:
com.fintechbankapi.Consumer.KYCNote, at table: consumer_kyc_notes, for
columns: [org.hibernate.mapping.Column(kyc_notes)]
我在每个类中都包含了无参数构造函数、带参数构造函数、getter和setter。
第一个问题
任何帮助都感激不尽。谢谢。
1条答案
按热度按时间jdgnovmf1#
您是否尝试过将以下内容添加到application.properties文件中?
“jpa.休眠.使用新的id生成器Map= false”...