I have a schema w开发者_如何转开发ith something along the lines of
<xs:element ref="Item" minOccurs="0" maxOccurs="unbounded" />
and it is referenced in my wsdl. When I use wsimport to create java code, the class gets a field called
List<Item> item;
Is there a way to get it to name the field something more standard like items
or itemList
?
I don't want to name the xs:element
Items because then I would get a class called Items
which is as bad.
Ok, this seemed to solve it:
Instead of
<xs:element ref="Item" minOccurs="0" maxOccurs="unbounded" />
I used
<xs:complexType name="Item">...</xs:complexType>
<xs:element name="ItemList" type="Item" minOccurs="0" maxOccurs="unbounded" />
which resulted in the code:
List<Item> itemList;
精彩评论