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] 

Devolucion から Devolucion の「consecutivo」を DevolucionMaster の変数「consecutivo」に使用して、DevolucionMaster から Devolucion への外部キーを作成しました。問題は、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