Skip to content

Commit 1b44275

Browse files
authored
Instantiate collections for DynamicType properties (#2256)
1 parent c4fc6f1 commit 1b44275

File tree

3 files changed

+27
-1
lines changed

3 files changed

+27
-1
lines changed

foundation/org.eclipse.persistence.core/src/main/java/org/eclipse/persistence/dynamic/DynamicTypeBuilder.java

+4
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
import org.eclipse.persistence.mappings.OneToOneMapping;
4242
import org.eclipse.persistence.mappings.converters.EnumTypeConverter;
4343
import org.eclipse.persistence.mappings.foundation.AbstractDirectMapping;
44+
import org.eclipse.persistence.oxm.mappings.XMLCompositeCollectionMapping;
4445
import org.eclipse.persistence.platform.database.DatabasePlatform;
4546
import org.eclipse.persistence.platform.xml.XMLParser;
4647
import org.eclipse.persistence.platform.xml.XMLPlatformFactory;
@@ -214,6 +215,9 @@ private boolean requiresInitialization(DatabaseMapping mapping) {
214215
if (mapping.isDirectToFieldMapping() && mapping.getAttributeClassification() != null && mapping.getAttributeClassification().isPrimitive()) {
215216
return true;
216217
}
218+
if (mapping.isCollectionMapping()) {
219+
return true;
220+
}
217221
if (mapping.isForeignReferenceMapping()) {
218222
ForeignReferenceMapping frMapping = (ForeignReferenceMapping) mapping;
219223
return frMapping.usesIndirection() || frMapping.isCollectionMapping();

foundation/org.eclipse.persistence.core/src/main/java/org/eclipse/persistence/internal/dynamic/DynamicPropertiesInitializatonPolicy.java

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2011, 2021 Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2011, 2024 Oracle and/or its affiliates. All rights reserved.
33
*
44
* This program and the accompanying materials are made available under the
55
* terms of the Eclipse Public License v. 2.0 which is available at
@@ -78,6 +78,9 @@ else if (primClass == ClassConstants.PBYTE) {
7878
value = Byte.MIN_VALUE;
7979
}
8080
}
81+
else if (mapping.isCollectionMapping()) {
82+
value = mapping.getContainerPolicy().containerInstance();
83+
}
8184
else if (mapping.isForeignReferenceMapping()) {
8285
ForeignReferenceMapping refMapping = (ForeignReferenceMapping)mapping;
8386
if (refMapping.usesIndirection() &&

moxy/org.eclipse.persistence.moxy/src/test/java/org/eclipse/persistence/testing/jaxb/dynamic/DynamicJAXBCollectionTestCases.java

+19
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
import java.util.Map;
2323
import java.util.Set;
2424
import java.util.Vector;
25+
import java.util.ArrayList;
2526

2627
import jakarta.xml.bind.JAXBElement;
2728
import jakarta.xml.bind.Marshaller;
@@ -33,6 +34,7 @@
3334
import org.eclipse.persistence.jaxb.JAXBContextProperties;
3435
import org.eclipse.persistence.jaxb.dynamic.DynamicJAXBContext;
3536
import org.eclipse.persistence.jaxb.dynamic.DynamicJAXBContextFactory;
37+
import org.eclipse.persistence.oxm.NamespaceResolver;
3638
import org.eclipse.persistence.testing.jaxb.dynamic.util.MyList;
3739
import org.w3c.dom.Document;
3840

@@ -65,6 +67,23 @@ public void testXSDSingleListUnmarshal() throws Exception {
6567
assertEquals("Incorrect phoneNumber type.", "work", firstPhoneNumber.get("type"));
6668
}
6769

70+
public void testXSDInstantiateList() throws Exception {
71+
InputStream schemaStream = ClassLoader.getSystemResourceAsStream(XSD_SINGLE);
72+
jaxbContext = DynamicJAXBContextFactory.createContextFromXSD(schemaStream, null, null, null);
73+
74+
var customer = jaxbContext.newDynamicEntity("Customer");
75+
76+
assertNotNull(customer.get("phoneNumbers"));
77+
78+
var resolver = new NamespaceResolver();
79+
resolver.setDefaultNamespaceURI("www.example.org/customer");
80+
81+
var phoneNumbers = jaxbContext.getValueByXPath(customer, "phone-numbers", resolver, Object.class);
82+
83+
assertNotNull(phoneNumbers);
84+
assertEquals(ArrayList.class, phoneNumbers.getClass());
85+
}
86+
6887
public void testXSDMultipleListUnmarshal() throws Exception {
6988
InputStream schemaStream = ClassLoader.getSystemResourceAsStream(XSD_MULTI);
7089
jaxbContext = DynamicJAXBContextFactory.createContextFromXSD(schemaStream, null, null, null);

0 commit comments

Comments
 (0)