Hibernate @JoinColumn insertable = false不起作用(重复的列名)

时间:2013-07-19 09:54:56

标签: mysql hibernate jpa

我在使用hibernate hdd2auto创建一些表时遇到问题。使用组合外键时,有必要在更新/创建表时指示何时应忽略作为键一部分的字段上的@ManyToOne关系。 即使我将这些设置放在日志中,结果如下:

2013-07-19 11:44:11 ERROR [hibernate.tool.hbm2ddl.SchemaUpdate:235] - HHH000388: Unsuccessful: create table `ActionLocale` (`ActionId` integer not null, `LanguageId` integer not null, `ActionName` varchar(255), ActionId integer, LanguageId integer, primary key (`ActionId`, `LanguageId`)) ENGINE=InnoDB
2013-07-19 11:44:11 ERROR [hibernate.tool.hbm2ddl.SchemaUpdate:236] - Duplicate column name 'ActionId'

正如您所看到的,ActionId列在查询中声明了两次!为什么?

这些是我的课程。

可嵌入密钥:

@Embeddable
public class ActionLocalePK implements Serializable {
    //default serial version id, required for serializable classes.
    private static final long serialVersionUID = 1L;

    @Column(name="ActionId")
    private int actionId;

    @Column(name="LanguageId")
    private int languageId;

班级表:

@Entity
public class ActionLocale implements Serializable {
    private static final long serialVersionUID = 1L;

    @EmbeddedId
    private ActionLocalePK id;

    @Column(name="ActionName")
    private String actionName;

    //bi-directional many-to-one association to Action
    @ManyToOne(fetch=FetchType.LAZY)
    @JoinColumn(name="ActionId",insertable=false,updatable=false)
    private Action action;

    //bi-directional many-to-one association to Language
    @ManyToOne(fetch=FetchType.LAZY)
    @JoinColumn(name="LanguageId",insertable=false,updatable=false)
    private Language language;

在我设置的hibernate.cfg.xml中:

<property name="hibernate.connection.CharSet">utf8</property>
        <property name="hibernate.connection.characterEncoding">utf8</property>
        <property name="hibernate.connection.useUnicode">true</property>

        <property name="hibernate.globally_quoted_identifiers">true</property>

        <!-- Echo all executed SQL to stdout -->
        <property name="show_sql">true</property>

        <!-- SQL dialect -->
        <property name="dialect">org.hibernate.dialect.MySQL5InnoDBDialect</property>

        <!-- Update the database schema on startup -->
        <property name="hbm2ddl.auto">update</property>

我在Ubuntu上使用MySQL Ver 14.14 Distrib 5.5.31。 Hibernate版本是4.1。

2 个答案:

答案 0 :(得分:1)

您不应该使用insertable=falseupdatable=false。您应该使用@MapsId注释。或者甚至更好,忘记复合ID,并使用单列自动生成的ID。

答案 1 :(得分:0)

保存记录时,

insertable = false和updatable = false将忽略。首先,您应该手动创建表,然后使用它。 (或)尝试使用@transient(未测试)。