使用hibernate注释和oracle进行继承的顺序

时间:2012-04-12 13:33:24

标签: oracle hibernate inheritance annotations sequence

我有遗产

抽象类A:

@MappedSuperclass
public abstract class A {

    public Integer id;

    @Id
    @Column(name = "ID", nullable = false)
    public Integer getId() {
        return this.id;
    }

    public void setId(Integer id) {
        this.id = id;
    }
}  

子类B,使用序列:

@Entity
@Table(name = "B")
public class B
    extends A {

    private String descripction;

    @Override
    @SequenceGenerator(name = "SEQ_TRANSACTIONID", sequenceName = "SEQ_TRANSACTION", allocationSize = 1)
    @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "SEQ_TRANSACTIONID")
    public Integer getId() {
        return id;
    }

    @Column(name = "DESCRIPTION", nullable = false)
    public String getDescripction() {
        return descripction;
    }

    public void setDescripction(String descripction) {
        this.descripction = descripction;
    }
}

子类C,不需要序列:

public class C extends A {
}

B类需要生成序列,但C类不需要。

我在“create-drop”中使用“hibernate.hbm2ddl.auto”运行proyect。但是从不创建SEQ_TRANSACTIONID。

我已经构建了这个test,因此您可以重现错误。

请帮帮我.....

提前致谢。

0 个答案:

没有答案