我有一个使用鉴别器列的 JPA 实体。但是我需要访问鉴别器的值作为实体的字段之一。我怎么办。如果我创建一个与鉴别器列匹配的方法,我会在部署时收到以下错误:

Caused by: org.hibernate.MappingException: Repeated column in mapping for entity: com.example.PortEntity column: type (should be mapped with insert="false" update="false")

实体定义:
@Entity(name="Port")
@DiscriminatorColumn(name="type",
         discriminatorType=DiscriminatorType.STRING,
         length=10)
@DiscriminatorValue(value="port")
@Table(name="vPorts")
@XmlRootElement(name="port")
public class PortEntity {

     ...

     @Column(name="type", length=20, insert=false, update="false")
     @XmlAttribute(name="type")
     public String getType() { ... }

     public void setType(String newType) {... }

     ...

     @Entity(name="SeaPort")
     @DiscriminatorValue(value="seaport")
     @XmlRootElement(name="seaport")
     public static class Sea
     extends PortEntity { ... }



     @Entity(name="AirPort")
     @DiscriminatorValue(value="seaport")
     @XmlRootElement(name="seaport")
     public static class Air
     extends PortEntity { ... }

}

最佳答案

如果您想访问 @DiscriminatorColumn(name="type", discriminatorType=DiscriminatorType.STRING, length=10) 的值,您可以添加如下方法:

@Transient
public String getDecriminatorValue() {
    return limitString(this.getClass().getName(), 10);
}

如果要在 JQPL 查询中访问它,则需要使用 TYPE 运算符:SELECT pe FROM PortEntity as pe WHERE TYPE(pe) = SomePortEntity

关于jakarta-ee - 获取鉴别器列的值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15208793/

10-12 00:32