我已经使用hibernate注释定义了一个Article
实体:
@Entity
@Table(name = "WZQ_ARTICLES")
@Inheritance(strategy = InheritanceType.SINGLE_TABLE)
@DiscriminatorColumn(name = "ARTICLE_TYPE", discriminatorType = DiscriminatorType.STRING)
@DiscriminatorValue("CURRENT")
public class Article {
}
它使用ARTICLE_TYPE
列作为鉴别器列。但生成的hbm不包含它。
当我插入新的Article
实体时,它会报告一个例外:
Caused by: org.h2.jdbc.JdbcSQLException: Column "ARTICLE_TYPE" not found; SQL statement: