1

我的 Java 代码中的 Netbeans 出现此错误:

org.hibernate.MappingException: Foreign key (FK12A711396456CA10:devolucion_master [devolucion_consecutivo])) must have same number of columns as the referenced primary key (devolucion [detalle_ticket_id,detalle_ticket_ticket_id,detalle_ticket_fondo_fijo_id,detalle_ticket_caja_id,consecutivo] 

我制作了一个从 DevolucionMaster 到 Devolucion 的外键,使用 Devolucion 中的“consecutivo”到我的 DevolucionMaster 变量“consecutivo”,问题是对于 Devolucion,“键”是复合键,我只使用外键的一个元素关键,也许这就是为什么(它需要使用 5 来构成主键)。

这是 DevolucionMaster.hbm.mxl:

<hibernate-mapping>
  <class catalog="pos" name="dunosusa.pos.model.DevolucionMaster" table="devolucion_master">
    <composite-id class="dunosusa.pos.model.DevolucionMasterId" name="id">
      <key-property name="id" type="int">
        <column name="id"/>
      </key-property>
      <key-property name="detalleTicketTicketId" type="int">
        <column name="detalle_ticket_ticket_id"/>
      </key-property>
      <key-property name="detalleTicketFondoFijoId" type="int">
        <column name="detalle_ticket_fondo_fijo_id"/>
      </key-property>
      <key-property name="detalleTicketCajaId" type="int">
        <column name="detalle_ticket_caja_id"/>
      </key-property>
    </composite-id>
    <many-to-one class="dunosusa.pos.model.Devolucion" fetch="select" name ="devolucion">
      <column name="devolucion_consecutivo" not-null="true"/>
    </many-to-one>
    <many-to-one class="dunosusa.pos.model.Usuario" fetch="select" name="usuario">
      <column length="6" name="usuario_clave_autorizo"/>
    </many-to-one>
    <many-to-one class="dunosusa.pos.model.Ticket" fetch="select" insert="false" name="ticket" update="false">
      <column name="detalle_ticket_ticket_id" not-null="true"/>
      <column name="detalle_ticket_fondo_fijo_id" not-null="true"/>
      <column name="detalle_ticket_caja_id" not-null="true"/>
    </many-to-one>
    <property name="total" type="big_decimal">
      <column name="total" not-null="true" precision="10"/>
    </property>
    <property name="fecha" type="timestamp">
      <column length="19" name="fecha"/>
    </property>
  </class>
</hibernate-mapping>

这里是 Devolucion.hbm.xml:

<hibernate-mapping>
  <class catalog="pos" name="dunosusa.pos.model.Devolucion" table="devolucion">
    <composite-id class="dunosusa.pos.model.DevolucionId" name="id">
      <key-property name="detalleTicketId" type="int">
        <column name="detalle_ticket_id"/>
      </key-property>
      <key-property name="detalleTicketTicketId" type="int">
        <column name="detalle_ticket_ticket_id"/>
      </key-property>
      <key-property name="detalleTicketFondoFijoId" type="int">
        <column name="detalle_ticket_fondo_fijo_id"/>
      </key-property>
      <key-property name="detalleTicketCajaId" type="int">
        <column name="detalle_ticket_caja_id"/>
      </key-property>
      <key-property name="consecutivo" type="int">
        <column name="consecutivo"/>
      </key-property>
    </composite-id>
    <many-to-one class="dunosusa.pos.model.MotivoDevolucion" fetch="select" name="motivoDevolucion">
      <column name="motivo_devolucion_id" not-null="true"/>
    </many-to-one>
    <many-to-one class="dunosusa.pos.model.DetalleTicket" fetch="select" insert="false" name="detalleTicket" update="false">
      <column name="detalle_ticket_id" not-null="true"/>
      <column name="detalle_ticket_ticket_id" not-null="true"/>
      <column name="detalle_ticket_fondo_fijo_id" not-null="true"/>
      <column name="detalle_ticket_caja_id" not-null="true"/>
    </many-to-one>
    <many-to-one class="dunosusa.pos.model.ControlCorte" fetch="select" name="controlCorte">
      <column name="control_corte_fondo_fijo_id" not-null="true"/>
      <column name="control_corte_caja_id" not-null="true"/>
    </many-to-one>
    <property name="cantidad" type="big_decimal">
      <column name="cantidad" precision="8"/>
    </property>
    <property name="fecha" type="timestamp">
      <column length="19" name="fecha"/>
    </property>
    <property name="comentario" type="string">
      <column length="150" name="comentario"/>
    </property>
    <property name="controlDevolucion" type="boolean">
      <column name="control_devolucion" not-null="true"/>
    </property>
    <set name="devolucionMasters" inverse="true">
        <key>
            <column name="devolucion_consecutivo" not-null="true" />
        </key>
        <one-to-many class="dunosusa.pos.model.DevolucionMaster" />
    </set>
  </class>
</hibernate-mapping>

DevolucionMaster.java:(只有变量,没有set和get)

public class DevolucionMaster  implements java.io.Serializable {

     private DevolucionMasterId id;
     private Devolucion devolucion;
     private Usuario usuario;
     private Ticket ticket;
     private BigDecimal total;
     private Date fecha;
}

Devolucion.java:(与 DevolucionMaster 相同)

public class Devolucion  implements java.io.Serializable {

     private DevolucionId id;
     private MotivoDevolucion motivoDevolucion;
     private DetalleTicket detalleTicket;
     private ControlCorte controlCorte;
     private BigDecimal cantidad;
     private Date fecha;
     private String comentario;
     private boolean controlDevolucion;
     private Set devolucionMasters = new HashSet(0);
}

我不知道我的错误是什么,我在互联网上搜索过类似的错误,但我读过的任何解决方案都没有奏效(原谅我的英语不好)。

非常感谢!

4

1 回答 1

1

是的,你有一个Devolucion类的复合主键,你试图通过一个简单的 column/field 来引用它devolucion_master.devolucion_consecutivo

我不知道有一种方法可以轻松地告诉 Hibernate 该devolucion_consecutivo列实际上是 type dunosusa.pos.model.DevolucionId

这就是为什么我从未使用过复合主键。我总是有一个Long( bigint) 类型的主键,并在需要的地方强制外键组合的唯一性。使用起来更容易,没有您遇到的问题。

附录: 我只是做了一些挖掘,实际上,有一种方法可以做到这一点:-) 但正如我所说,它不像使用单列 PK/FK 键那么容易。

而不是这个:

<hibernate-mapping>
  <class catalog="pos" name="dunosusa.pos.model.DevolucionMaster" table="devolucion_master">
  ...
    <many-to-one class="dunosusa.pos.model.Devolucion" fetch="select" name="devolucion">
      <column name="devolucion_consecutivo" not-null="true"/>
    </many-to-one>
    ...

您应该像这样列出 FK 中的所有 PK 列:

<hibernate-mapping package="dunosusa.pos.model">
  <class catalog="pos" name="DevolucionMaster" table="devolucion_master">
    ...
    <many-to-one class="Devolucion" fetch="select" name="devolucion">
      <column name="devolucion_detalle_ticket_id" not-null="true"/>
      <column name="devolucion_detalle_ticket_ticket_id" not-null="true"/>
      <column name="devolucion_detalle_ticket_fondo_fijo_id" not-null="true"/>
      <column name="devolucion_detalle_ticket_caja_id" not-null="true"/>
      <column name="devolucion_consecutivo" not-null="true"/>
    </many-to-one>
    ...

一个小建议 - 使用元素的package属性,hibernate-mapping这样你就不必在任何地方都输入它 - 它使它更具可读性。

祝你好运。

于 2013-04-12T23:45:01.293 回答