在使用Hibernate和MySQL的Spring MVC应用程序中,我有一个抽象超类BaseEntity,该超类管理模型中所有其他实体的ID值。该id字段使用@GeneratedValue。每当我的代码尝试保存任何扩展的子类时,我都会遇到问题BaseEntity。这个问题带有的选择GenerationType了@GeneratedValue。
BaseEntity
id
@GeneratedValue
GenerationType
在我的代码中BaseEntity试图将子类保存到底层MySQL数据库的每个位置,都会出现以下错误:
ERROR SqlExceptionHelper - Table 'docbd.hibernate_sequences' doesn't exist
我已经在SO和google上阅读了很多关于此的文章,但是它们要么处理其他数据库(不是MySQL),要么不处理抽象超类。我无法通过使用来解决问题,GenerationType.IDENTITY因为我正在使用抽象超类来管理id模型中所有实体的字段。同样,我无法使用,GenerationType.SEQUENCE因为MySQL不支持序列。
GenerationType.IDENTITY
GenerationType.SEQUENCE
那么我该如何解决这个问题呢?
这是以下代码BaseEntity.java:
BaseEntity.java
@Entity @Inheritance(strategy = InheritanceType.TABLE_PER_CLASS) public abstract class BaseEntity { @Id @GeneratedValue(strategy = GenerationType.TABLE) protected Integer id; public void setId(Integer id) {this.id = id;} public Integer getId() {return id;} public boolean isNew() {return (this.id == null);} }
这是扩展的其中一个实体的代码示例BaseEntity:
@Entity @Table(name = "ccd") public class CCD extends BaseEntity{ //other stuff }
这是DDL:
CREATE TABLE IF NOT EXISTS ccd( id int(11) UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, #other stuff )engine=InnoDB;SHOW WARNINGS;
这是DAO中的JPQL代码:
@Override @Transactional public void saveCCD(CCD ccd) { if (ccd.getId() == null) { System.out.println("[[[[[[[[[[[[ about to persist CCD ]]]]]]]]]]]]]]]]]]]]"); this.em.persist(ccd); this.em.flush(); } else { System.out.println("]]]]]]]]]]]]]]]]]] about to merge CCD [[[[[[[[[[[[[[[[[[[[["); this.em.merge(ccd); this.em.flush(); } }
@MappedSuperClass在这种情况下无法使用的原因是,我需要具有ManyToOne允许多个子类型可互换使用的关系。以AccessLog下面的类为例。它有一个actor_entity和一个target_entity。可以有多种类型的参与者实体和多种类型的目标实体,但是它们都继承自BaseEntity。这种继承使accesslogsMySQL中的基础数据表仅具有一个actor_entity_id字段和一个target_entity_id字段,而不必为每个字段具有多个字段。当我改变@Entity上面BaseEntity来@MappedSuperClass,不同的错误被抛出,表明AccessLog无法找到BaseEntity。 BaseEntity需要@Entity注解AccessLog以具有多态性。
@MappedSuperClass
ManyToOne
AccessLog
actor_entity
target_entity
accesslogs
actor_entity_id
target_entity_id
@Entity
@Entity @Table(name = "accesslogs") public class AccessLog extends BaseEntity{ @ManyToOne @JoinColumn(name = "actorentity_id") private BaseEntity actor_entity; @ManyToOne @JoinColumn(name = "targetentity_id") private BaseEntity target_entity; @Column(name="action_code") private String action; //getters, setters, & other stuff }
根据JBNizet的建议,我创建了一个hibernate_sequences表,如下所示:
CREATE TABLE IF NOT EXISTS hibernate_sequences( sequence_next_hi_value int(11) UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY )engine=InnoDB;SHOW WARNINGS;
但是现在我收到以下错误:
Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column 'sequence_name' in 'where clause'
这是导致错误的hibernatesql,然后是堆栈跟踪的后两行:
Hibernate: select sequence_next_hi_value from hibernate_sequences where sequence_name = 'BaseEntity' for update ERROR MultipleHiLoPerTableGenerator - HHH000351: Could not read or init a hi value com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column 'sequence_name' in 'where clause'
我该如何解决?
因为您使用TABLE标识符生成器,所以需要创建该表。如果不使用增强型标识符生成器,则可能会使用MultipleHiLoPerTableGenerator。
MultipleHiLoPerTableGenerator可以将一个表用于所有表标识符生成器。
我的建议是从集成测试中获取表ddl,以防您使用hbmddl构建测试架构。如果使用flyway或liquibase进行测试,则可以添加一个maven插件来生成ddl模式。
一旦有了模式,就需要使用精确的create table命令并将其添加到MySQL数据库中。