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.
XML形式でデータを生成するためのresteasy Webサービスを書いています。データがある場合、XML 出力は正常に機能します。本当の問題は、データがないときに発生します。親タグで止まります。
データがない場合は、次のようになります
<salts/>
私はこの種の出力を探しています
<salts> <salt/> <salts>
salts空のコレクションでコレクションを初期化してみてください。このようなもの:
salts
@XmlElementWrapper @XmlElement(name="salt") private List<Salt> salts = new ArrayList<Salt>();