Hibernate映射列出了双方关系。

时间:2012-11-16 16:09:53

标签: java hibernate list

我有两个objs; DocumentDocumentBatch

文档

public class Document implements Serializable {

....
private String documentId; //PK of Document
private DocumentBatch documentBatch;
....}

DocumentBatch

public class DocumentBatch implements Serializable {


private String batchId;//PK of DocumentBatch

private List<Document> lDocuments = new LinkedList<Document>();
.....
public void insertDocument(Document document) {
    lDocuments.add(document); // lDocuments is a list DocumentBatch
    document.setDocumentBatch(this);
....}

Hibernate映射:

文档

   <class name="Document" table="DOCUMENTS">
  .....
  <id name="documentID" column="DOCUMENT_ID" type="string" />
  <many-to-one name="documentBatch" class="DocumentBatch" not-null="false" 
  cascade="save-update" lazy="false" insert="false" update="false">
        <column name="BATCH_ID" not-null="true" />
    </many-to-one>
  ......
</class>

DocumentBatch

 <class name="DocumentBatch" table="DOCUMENT_BATCHES">
     <id name="batchId" column="BATCH_ID" type="string" /> 
     <list name="lDocuments" table="DOCUMENTS" cascade="all"
        inverse="false" lazy="false" mutable="true">
        <key not-null="true">
            <column name="BATCH_ID" />
        </key>
        <list-index column="LIST_INDEX" base="0" />
        <one-to-many class="Document" />
       </list>
     ......
 </class>

DocumentBatch有一个Document列表

Document有batchId,它是DocumentBatch的PK。我在DocumentBatch中使用

设置了列表的Hibernate映射

逆= “假”

并且在Document中,多对一关系集insert =“false”update =“false”

但是当我尝试保存Document obj时,它的DocumentBatch将不会被保存。

如何解决。如果有人可以提供帮助......希望周末都过得愉快。

Oracle DB:

文件

CREATE TABLE DOCUMENTS(
DOCUMENT_ID VARCHAR2(255 CHAR) NOT NULL,
BATCH_ID VARCHAR2(255 CHAR) NOT NULL,
...);  


CREATE UNIQUE INDEX PK_DOCUMENT ON DOCUMENTS (DOCUMENT_ID); 
ALTER TABLE DOCUMENTS ADD (CONSTRAINT PK_DOCUMENT PRIMARY KEY (DOCUMENT_ID) USING INDEX PK_DOCUMENT); 

ALTER TABLE DOCUMENTS ADD (CONSTRAINT FK_DOCUMENT_BATCH_ID FOREIGN KEY (BATCH_ID) REFERENCES DOCUMENT_BATCHES (BATCH_ID) ON DELETE CASCADE);

DocumentBatch

CREATE TABLE DOCUMENT_BATCHES(
BATCH_ID VARCHAR2(255 CHAR)     NOT NULL
...);

ALTER TABLE DOCUMENT_BATCHES ADD (
PRIMARY KEY (BATCH_ID));

1 个答案:

答案 0 :(得分:2)

如果我理解你的话。从您显示的片段中我会说您遇到的行为是正确的。你说的问题是:

  

但是当我尝试保存Document obj时,它的DocumentBatch将不会   保存。

因为有明确的设置NOT insert和NOT update:

<many-to-one name="documentBatch" class="DocumentBatch" 
    not-null="false" cascade="save-update" lazy="false" 
    insert="false" // Hibernate do not insert
    update="false" // Hibernate do not update
>

然后结果是正确的。 如果您想将关系保存到DocumentBatch,那么只需更改该映射:

insert="true" // Hibernate DO insert
update="true" // Hibernate DO update

(或删除它们,因为默认为true,然后如果您将DocumentBatch分配给Document并保存 - 所有将会坚持正确。这应该解决它。

编辑:重复列异常

我猜你的实体Document有另一个字段映射到batch_id

<many-to-one name="documentBatch" class="DocumentBatch" not-null="false" 
  cascade="save-update" lazy="false" insert="false" update="false">
  <column name="BATCH_ID" not-null="true" />
</many-to-one>
// this is not in the snippet above, but I guess it is there
<property name="batchId" column="BATCH_ID"/>

并在代码中:

public class Document implements Serializable {
private String documentId; //PK of Document
private DocumentBatch documentBatch;
// this is not in the snippet above, but I guess it is there
private String batchId;
....}

如果是这种情况,那么两个不同的属性将映射到同一列,这就是我们遇到的原因:duplicated column exception 如果我的期望是正确的,请以这种方式更改映射:

<many-to-one name="documentBatch" class="DocumentBatch" not-null="false" 
  cascade="save-update" lazy="false" > // insert and update removed
  <column name="BATCH_ID" not-null="true" />
</many-to-one>
<property name="batchId" formula="[BATCH_ID]" insert="false" update="false"/>

因此documentBatch将用于插入更新,而batchId将仅用于readonly。