Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 XML 模式 (xsd) 中实现列表?因此与 Java 类的映射应该创建 java.util.List 类型而不是 Object Type 的变量?
maxOccurs="unbounded"在属性中使用元素或列表类型。就像是:
maxOccurs="unbounded"
<xs:element name="strings" type="xs:string" maxOccurs="unbounded"/> <xs:attribute name="ints" type="ints"/> <xs:simpleType name="ints"> <xs:list itemType="xs:int"/> </xs:simpleType>
但是,具体映射取决于您使用的库。