简体   繁体   中英

How to generate meaningful list names in JAX-WS web services

I have a schema with 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;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM