最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

java - Quarkus Hibernate ORM creates flawed associative table when two entities with @OneToMany relations extend the same Parent

programmeradmin2浏览0评论

Issue Description

With the following Setup

@Entity
public class ParentContainer {
    @Id
    @GeneratedValue
    public Long id;
}
@Entity
public class Container1 extends ParentContainer{
    @OneToMany
    public Set<Part> parts;
}
@Entity
public class Container2 extends ParentContainer {
    @OneToMany
    public Set<Part> parts;
}
@Entity
public class Part {
    @Id
    @GeneratedValue
    public Long id;
}

Hibernate will create a associative table called parentcontainer_part that stores a container1_id and a container2_id both with a NOT NULL constraint.

create table parentcontainer_part
(
    container1_id bigint not null
        constraint fkha3bx76rbpaly2k96p4ay41pu
            references parentcontainer,
    container2_id bigint not null
        constraint fkridaro57cwd6262vsbttj8069
            references parentcontainer,
    parts_id      bigint not null
        unique
        constraint fkmh13giccrumjrrharog6p2rdh
            references part,
    primary key (container1_id, parts_id)
);

This means that neither Container1 or Container2 can ever be initialized because the NOT NULL constraint of the other container type will always interfere. Its Obviously possible for a Part to only be in the Set of Container1 and not in the Set in Container2.

Potential Solutions

By making the ParentContainer a @MappedSuperclass the associative entity would be correct, but then the ParentContainer type can no longer be used in any other relation by any other entity, only the specific Container1 or Container2.

The obvious solution in this example would be to move the Set of parts to the ParentContainer but there might be 10 different container types and only two need a Set of Parts.

By adding a @Inheritance(strategy = InheritanceType.JOINED) to the ParentContainer it will break up the entities into multiple tables and obviously create multiple associative tables. But now a ton of joins are needed when querying that data which is undesirable.

Expected Solution

I expected the Hibernate Mapper to be smarter and not create these conflicting NOT NULL constraints in the first place. But if hibernate does not create individual associative tables for each entity there should be a way to configure either the parent or the relations to do so.

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论