java.lang.ClassCastException: org.hibernate.mapping.SingleTableSubclass cannot be cast to org.hibernate.mapping.RootClass

huangapple go评论60阅读模式
英文:

java.lang.ClassCastException: org.hibernate.mapping.SingleTableSubclass cannot be cast to org.hibernate.mapping.RootClass

问题

我有两个类一个父类和一个子类我使用了[这个][1]解决方法来定义混合继承策略然而当使用maven编译时我遇到了一个错误

父类

    @Entity
    @Table(name="ITEMS")
    @Inheritance(strategy=InheritanceType.SINGLE_TABLE)
    @DiscriminatorColumn(name="ITEM_CATEGORY",discriminatorType=DiscriminatorType.INTEGER)
    public class Item {
        @Id
        @GeneratedValue(strategy=GenerationType.AUTO)
        @Column(name = "ITEM_ID")
        protected Long itemId;
    .
    .
    .}

子类

     @Entity
     @SecondaryTable(name="TASKS", pkJoinColumns = 
     {@PrimaryKeyJoinColumn(name = "ITEM_ID", referencedColumnName = "ITEM_ID")})
     @DiscriminatorValue(value=ItemCategory.Values.TASK)
     public class Task extends Item {
         //没有@Id字段}

错误

    java.lang.IllegalStateException: 无法加载应用程序上下文
    Caused by: org.springframework.beans.factory.BeanCreationException: 在类路径资源[org/springframework/boot/autoconfigure/orm/jpa/HibernateJpaConfiguration.class]中定义的名为'entityManagerFactory'的bean创建时出错初始化方法的调用失败嵌套异常是java.lang.ClassCastException: 无法将org.hibernate.mapping.SingleTableSubclass转换为org.hibernate.mapping.RootClass
    Caused by: java.lang.ClassCastException: 无法将org.hibernate.mapping.SingleTableSubclass转换为org.hibernate.mapping.RootClass

pom.xml

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.0.0.RELEASE</version>
        <relativePath/> <!-- 从存储库查找父级 -->
    </parent>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-jpa</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-rest</artifactId>
        </dependency>
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <scope>runtime</scope>
        </dependency>

DDL

    CREATE TABLE ITEMS(
    ITEM_ID bigint 自增主键,
    .
    .
    .
    FOREIGN KEY(RELATED_TO_ITEM) 引用 ITEMS(ITEM_ID)
    );


    CREATE TABLE TASKS( #包括重复任务一次性任务学习任务和响应
    ITEM_ID bigint 主键,
    .
    .
    .
    FOREIGN KEY(ITEM_ID) 引用 ITEMS(ITEM_ID)
    );

  [1]: https://stackoverflow.com/questions/1825676/changing-the-inheritance-strategy-in-branches-of-the-class-hierarchy-via-jpa-anno
英文:

I have 2 classes one parent and one child, I used this workaround to define mixed inheritance strategy, however when compiling with maven, I am getting an error.

Parent class:

@Entity
@Table(name=&quot;ITEMS&quot;)
@Inheritance(strategy=InheritanceType.SINGLE_TABLE)
@DiscriminatorColumn(name=&quot;ITEM_CATEGORY&quot;,discriminatorType=DiscriminatorType.INTEGER)
public class Item {
@Id
@GeneratedValue(strategy=GenerationType.AUTO)
@Column(name = &quot;ITEM_ID&quot;)
protected Long itemId;
.
.
.}

Child class:

 @Entity
@SecondaryTable(name=&quot;TASKS&quot;, pkJoinColumns = 
{@PrimaryKeyJoinColumn(name = &quot;ITEM_ID&quot;, referencedColumnName = &quot;ITEM_ID&quot;)})
@DiscriminatorValue(value=ItemCategory.Values.TASK)
public class Task extends Item {
//no @Id field}

error:

java.lang.IllegalStateException: Failed to load ApplicationContext
Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name &#39;entityManagerFactory&#39; defined in class path resource [org/springframework/boot/autoconfigure/orm/jpa/HibernateJpaConfiguration.class]: Invocation of init method failed; nested exception is java.lang.ClassCastException: org.hibernate.mapping.SingleTableSubclass cannot be cast to org.hibernate.mapping.RootClass
Caused by: java.lang.ClassCastException: org.hibernate.mapping.SingleTableSubclass cannot be cast to org.hibernate.mapping.RootClass

pom.xml:

	&lt;parent&gt;
&lt;groupId&gt;org.springframework.boot&lt;/groupId&gt;
&lt;artifactId&gt;spring-boot-starter-parent&lt;/artifactId&gt;
&lt;version&gt;2.0.0.RELEASE&lt;/version&gt;
&lt;relativePath/&gt; &lt;!-- lookup parent from repository --&gt;
&lt;/parent&gt;
&lt;dependencies&gt;
&lt;dependency&gt;
&lt;groupId&gt;org.springframework.boot&lt;/groupId&gt;
&lt;artifactId&gt;spring-boot-starter-data-jpa&lt;/artifactId&gt;
&lt;/dependency&gt;
&lt;dependency&gt;
&lt;groupId&gt;org.springframework.boot&lt;/groupId&gt;
&lt;artifactId&gt;spring-boot-starter-data-rest&lt;/artifactId&gt;
&lt;/dependency&gt;
&lt;dependency&gt;
&lt;groupId&gt;mysql&lt;/groupId&gt;
&lt;artifactId&gt;mysql-connector-java&lt;/artifactId&gt;
&lt;scope&gt;runtime&lt;/scope&gt;
&lt;/dependency&gt;

DDL:

CREATE TABLE ITEMS(
ITEM_ID bigint auto_increment primary key,
.
.
.
FOREIGN KEY(RELATED_TO_ITEM) references ITEMS(ITEM_ID)
);
CREATE TABLE TASKS( #INCLUDES REPEATED TASKS, ONETIME TASKS, LEARNING DUTY AND RESPONSES
ITEM_ID bigint primary key,
.
.
.
FOREIGN KEY(ITEM_ID) references ITEMS(ITEM_ID)
);

答案1

得分: 1

以下是您提供的内容的翻译部分:

我尝试使用您的映射(进行了轻微更改),确切地使用了您的Hibernate版本5.2.14.Final(spring-boot-starter-data-jpa 2.0.0.RELEASE):

表格:

CREATE TABLE ITEMS (
   ITEM_ID bigint auto_increment primary key,
   ITEM_CATEGORY bigint,
   RELATED_TO_ITEM bigint,
   FOREIGN KEY(RELATED_TO_ITEM) references ITEMS(ITEM_ID)
);

insert into ITEMS
values (1, 1, null), (2, 1, 1), (3, 0, 1), (4, 1, 2);

CREATE TABLE TASKS(
   ITEM_ID bigint primary key,
   code varchar(100),
   FOREIGN KEY(ITEM_ID) references ITEMS(ITEM_ID)
);

insert into TASKS
values (1, 'TASK 1'), (2, 'Task 2'), (4, 'Task 4');

Hibernate映射:

@Entity
@Table(name = "ITEMS")
@Inheritance(strategy = InheritanceType.SINGLE_TABLE)
@DiscriminatorColumn(name="ITEM_CATEGORY", discriminatorType = DiscriminatorType.INTEGER)
public class Item
{
   private Long itemId;

   @Id
   @GeneratedValue(strategy = GenerationType.IDENTITY)
   @Column(name = "ITEM_ID")
   public Long getItemId()
   {
      return itemId;
   }
   public void setItemId(Long itemId)
   {
      this.itemId = itemId;
   }
}

@Entity
@SecondaryTable(name="TASKS", pkJoinColumns = {
   @PrimaryKeyJoinColumn(name = "ITEM_ID", referencedColumnName = "ITEM_ID")
})
@DiscriminatorValue("1")
public class Task extends Item
{
   private String code;

   @Column(table = "TASKS", name = "code")
   public String getCode()
   {
      return code;
   }
   public void setCode(String code)
   {
      this.code = code;
   }
}

@Entity
@DiscriminatorValue("0")
public class Job extends Item
{

}

以及用于选择测试的简单代码:

List<Item> items = session.createQuery("select i from Item i", Item.class).getResultList();

将生成以下SQL:

/* select i from Item i */
select
  item0_.ITEM_ID as ITEM_ID2_0_,
  item0_1_.code as code1_1_,
  item0_.ITEM_CATEGORY as ITEM_CAT1_0_ 
from DB_A.ITEMS item0_ 
left outer join DB_A.TASKS item0_1_ on item0_.ITEM_ID=item0_1_.ITEM_ID

以及插入测试:

Task task = new Task();
task.setCode("my new task 1");
session.persist(task);

将生成以下SQL:

 /* insert com.sternkn.hibernate.model.Task */
insert into DB_A.ITEMS(ITEM_CATEGORY)  
values (1)

/* insert com.sternkn.hibernate.model.Task */
insert into DB_A.TASKS(code, ITEM_ID) 
values (?, ?)
英文:

I tried to use your mapping (with minor changes) with exactly your hibernate version 5.2.14.Final (spring-boot-starter-data-jpa 2.0.0.RELEASE):

Tables:

CREATE TABLE ITEMS (
   ITEM_ID bigint auto_increment primary key,
   ITEM_CATEGORY bigint,
   RELATED_TO_ITEM bigint,
   FOREIGN KEY(RELATED_TO_ITEM) references ITEMS(ITEM_ID)
);

insert into ITEMS
values (1, 1, null), (2, 1, 1), (3, 0, 1), (4, 1, 2);

CREATE TABLE TASKS(
   ITEM_ID bigint primary key,
   code varchar(100),
   FOREIGN KEY(ITEM_ID) references ITEMS(ITEM_ID)
);

insert into TASKS
values (1, &#39;TASK 1&#39;), (2, &#39;Task 2&#39;), (4, &#39;Task 4&#39;);

Hibernate mapping:

@Entity
@Table(name = &quot;ITEMS&quot;)
@Inheritance(strategy = InheritanceType.SINGLE_TABLE)
@DiscriminatorColumn(name=&quot;ITEM_CATEGORY&quot;, discriminatorType = DiscriminatorType.INTEGER)
public class Item
{
   private Long itemId;

   @Id
   @GeneratedValue(strategy = GenerationType.IDENTITY)
   @Column(name = &quot;ITEM_ID&quot;)
   public Long getItemId()
   {
      return itemId;
   }
   public void setItemId(Long itemId)
   {
      this.itemId = itemId;
   }
}

@Entity
@SecondaryTable(name=&quot;TASKS&quot;, pkJoinColumns = {
   @PrimaryKeyJoinColumn(name = &quot;ITEM_ID&quot;, referencedColumnName = &quot;ITEM_ID&quot;)
})
@DiscriminatorValue(&quot;1&quot;)
public class Task extends Item
{
   private String code;

   @Column(table = &quot;TASKS&quot;, name = &quot;code&quot;)
   public String getCode()
   {
      return code;
   }
   public void setCode(String code)
   {
      this.code = code;
   }
}

@Entity
@DiscriminatorValue(&quot;0&quot;)
public class Job extends Item
{

}

And simple code for select testing:

List&lt;Item&gt; items = session.createQuery(&quot;select i from Item i&quot;, Item.class).getResultList();

will generate the following sql:

/* select i from Item i */
select
  item0_.ITEM_ID as ITEM_ID2_0_,
  item0_1_.code as code1_1_,
  item0_.ITEM_CATEGORY as ITEM_CAT1_0_ 
from DB_A.ITEMS item0_ 
left outer join DB_A.TASKS item0_1_ on item0_.ITEM_ID=item0_1_.ITEM_ID

And insert testing:

Task task = new Task();
task.setCode(&quot;my new task 1&quot;);
session.persist(task);

will generate the following sql:

 /* insert com.sternkn.hibernate.model.Task */
insert into DB_A.ITEMS(ITEM_CATEGORY)  
values (1)

/* insert com.sternkn.hibernate.model.Task */
insert into DB_A.TASKS(code, ITEM_ID) 
values (?, ?)

If it will not help, please provide the full stack trace of your exception and full code of all entities from your inheritance hierarchy.

huangapple
  • 本文由 发表于 2020年9月6日 12:12:34
  • 转载请务必保留本文链接:https://go.coder-hub.com/63760632.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定