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.
我正在使用 Netbeans 7.1.2 中包含的 Jaxb 版本将 Xml 模式 (Xsd) 解组为 Java 对象。
Jaxb 返回给我 Vectors,但我想要 Lists。我如何将 Jaxb/Netbeans 设置为具有列表而不是向量?
默认情况下,JAXB (JSR-222) 实现将生成类型属性java.util.List并java.util.ArrayList用作具体实例。您必须使用指定的配置文件java.util.Vector或不兼容的 JAXB 实现。
java.util.List
java.util.ArrayList
java.util.Vector
了解更多信息
我认为您只需要更改生成的 POJOS 中的集合类型即可。