hibernate学习笔记第16讲-复合主键映射

复合(联合)主键映射:

复合主键映射一般采用把主键相关的字段拿出来,单独形成一个类,该类必须实现序列化接口,(在同一个JVM中没关系,如果跨JVM再想访问,必须序列化)。

复合主键一般与业务结合的很紧密,不建议使用。

通常将复合主键相关的属性,单独放到一个类中

* 此类必须实现序列化接口

         *覆写hashcode和equals方法

映射关系:

<hibernate-mapping>

<classname="com.bjsxt.hibernate.FiscalYearPeriod"table="t_fiscal_year_period">

           <composite-idname="fiscalYearPeriodPK">

                    <key-propertyname="fiscalYear"/>

                    <key-propertyname="fiscalPeriod"/>    

           </composite-id>

           <propertyname="beginDate"/>

           <propertyname="endDate"/>

           <propertyname="periodSts"/>

</class>

</hibernate-mapping>

相关推荐