ディスクリミネータ列を使用する JPA エンティティがあります。しかし、エンティティのフィールドの 1 つとして識別子の値にアクセスする必要があります。どうすればいいですか。識別子列に一致するメソッドを作成すると、デプロイ時に次のエラーが発生します。
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 { ... }
}