Hibernate:merge在DB

时间:2015-09-11 12:13:23

标签: java hibernate fpml

以下是问题的发生方式:

让我说我有一个包含对象列表B的对象A. 我首先坚持一个包含1 B的A. 然后我检索这个对象A(使用find),我在其列表中添加一个新对象B,然后在A上进行合并。 当我在对象A上进行查找时,我的第一个对象B保持不变,但第二个对象只有空字段。

请注意,这些B对象是FPML类的实例,它是根据库的XML描述生成的。

如果我的解释中缺少某些内容,请告诉我。

更新

InstrumentId对象出现问题。

    @Test
    public void testInstrumentIdPersistenceAndUpdate () throws Exception {

        InstrumentId instrumentId = InstrumentIdUtils.produceInstrument("SX5E:IND", InstrumentIdScheme.BLOOMBERG);

        UnderlyingDefinition underlyingDefinition1 = new UnderlyingDefinition();
        underlyingDefinition1.setSymbol("SX5E:IND");
        underlyingDefinition1.setCurrency(CurrencyUtils.EUR);
        underlyingDefinition1.addInstrumentId(instrumentId);

        ProductDefinition productDefinition1 = new ProductDefinition("PUT");
        productDefinition1.addInstrumentDefinition(underlyingDefinition1);

        Universe universe = new Universe();
        universe.addProductDefinition(productDefinition1);
        universe.setName("channel.test-3");

        universe.setUri(new URI("urn:mapp3.channel.test-3"));

        entityManager.persist(universe);

        InstrumentId instrumentId1 = InstrumentIdUtils.produceInstrument("NES:IND", InstrumentIdScheme.BLOOMBERG);
        underlyingDefinition1.addInstrumentId(instrumentId1);

        entityManager.merge(universe);

        InstrumentId instrumentId2 = InstrumentIdUtils.produceInstrument("TOCH:IND", InstrumentIdScheme.BLOOMBERG);
        underlyingDefinition1.addInstrumentId(instrumentId2);

//        entityManager.merge(universe);

        Universe u = entityManager.find(Universe.class, "urn:mapp3.channel.test-3");


    }

映射文件

<entity name="InstrumentId" class="org.fpml.v57.InstrumentId">

      <table name="T_INSTRUMENT_ID"/>

      <attributes>

         <id name="value" access="PROPERTY">
            <column name="VALUE" length="100"/>
         </id>

         <id name="instrumentIdScheme" access="FIELD">
            <column name="INSTRUMENT_ID_SCHEME" length="100"/>
         </id>

      </attributes>

   </entity>

这是生成的pojo

@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "InstrumentId", propOrder = {
    "value"
})
public class InstrumentId
    extends ModelObject
    implements Serializable
{

    @XmlValue
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
    protected String value;
    @XmlAttribute(name = "instrumentIdScheme", required = true)
    @XmlSchemaType(name = "anyURI")
    protected String instrumentIdScheme;

1 个答案:

答案 0 :(得分:-1)

仅当对象已保存在数据库中时,Merge()才有效。 Hibernate在其持久性包中查找对象。如果不存在(相同的ID),则会出现错误。

定义Hibernate doc: &#34;将给定对象的状态复制到具有相同标识符的持久对象上。&#34; Session.merge()

所以如果你首先保存对象A.使用Session.saveOrUpdate(对象A),您应该能够合并(对象B)。

另请参阅Session.save()和Session.persist()之间的区别。 Difference save and persist.

请告诉我,如果我的回答对你有所帮助。