Hibernate不插入外键

时间:2013-03-15 09:52:57

标签: hibernate orm foreign-keys mapping reverse-engineering

我有多对一的关系,当我尝试插入一个值时,不会传递foreigh键。

Enitnty Country

<hibernate-mapping>
<class name="servicedb.dal.domain.Country" table="Country" catalog="DB">
    <composite-id name="id" class="servicedb.dal.domain.CountryId">
        <key-property name="countryCode" type="string">
            <column name="countryCode" length="2" />
        </key-property>
        <key-property name="localeId" type="int">
            <column name="localeId" />
        </key-property>
    </composite-id>
    <many-to-one name="locale" class="servicedb.dal.domain.Locale" update="false" insert="false" fetch="select">
        <column name="localeId" not-null="true" />
    </many-to-one>
    <property name="name" type="string">
        <column name="name" length="60" not-null="true" />
    </property>
    <set name="cities" table="City" inverse="true" lazy="true" fetch="select">
        <key>
            <column name="countryCode" length="2" not-null="true" />
            <column name="localeId" not-null="true" />
        </key>
        <one-to-many class="servicedb.dal.domain.City" />
    </set>
</class>

实体城市

<hibernate-mapping>
    <class name="servicedb.dal.domain.City" table="City" catalog="DB">
        <composite-id name="id" class="servicedb.dal.domain.CityId">
            <key-property name="id" type="int">
                <column name="id" />
            </key-property>
            <key-property name="localeId" type="int">
                <column name="localeId" />
            </key-property>
        </composite-id>
        <many-to-one name="country" class="servicedb.dal.domain.Country" update="false" insert="false" fetch="select">
            <column name="countryCode" length="2" not-null="true" />
            <column name="localeId" not-null="true" />
        </many-to-one>
        <property name="name" type="string">
            <column name="name" length="100" not-null="true" />
        </property>
        <set name="localizedLocations" table="LocalizedLocation" inverse="true" lazy="true" fetch="select">
            <key>
                <column name="cityId" />
                <column name="localeId" not-null="true" />
            </key>
            <one-to-many class="servicedb.dal.domain.LocalizedLocation" />
        </set>
    </class>
</hibernate-mapping>

当我创建City实体时,我正确设置Country并且countryCode不为null。但生成的查询如下所示:

insert into Db.City (name, id, localeId) values (?, ?, ?)

但它应该是:

insert into Db.City (name, id, localeId, countryCode) values (?, ?, ?, ?)

hibernate抛出以下异常

org.hibernate.exception.GenericJDBCException: Field 'countryCode' doesn't have a default value

我希望提供的信息足以理解错误的原因。如果没有,请具体询问其他信息。

我也使用eclipse和reveng.xml对数据库进行反向工程,因此我的 hbm 文件是自动生成的,我没有使用EJB3注释。

编辑:发布了国家/地区和城市实体的完整映射。

1 个答案:

答案 0 :(得分:1)

多对一城市地图中的update="false" insert="false"适用于countryCodelocaleId。由于localeId也在您的复合ID中映射,因此会在生成的查询中使用,但countryCode不是这种情况......