以下是问题的发生方式:
假设我有一个包含对象 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;