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.
我正在编写一个 resteasy 网络服务来生成 XML 格式的数据。有数据时,XML 输出工作正常。当没有数据时,真正的问题就出现了。它以父标签停止。
如果没有数据,它看起来像这样
<salts/>
我正在寻找这种输出
<salts> <salt/> <salts>
尝试使用空集合初始化您salts的集合。像这样的东西:
salts
@XmlElementWrapper @XmlElement(name="salt") private List<Salt> salts = new ArrayList<Salt>();