Jersey/Jaxb aliasing a List of beans
问题 I have a interface @Path("basePath") @Produces(MediaType.APPLICATION_XML) @Consumes(MediaType.APPLICATION_XML) public interface SomeService { @GET @Path("list") public List<ItemBean> getItems() throws WebApplicationException; } and a bean @XmlRootElement(name = "item") @XmlAccessorType(XmlAccessType.FIELD) public class ItemBean { @XmlElement(name = "name") private String someName; @XmlElement(name = "description") private String desc20Char; ..... if I make the request my response is