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.
私はこのクラスを持っています
public class Header { @XmlAnyElement(lax = true) protected List<Object> any; // getters/setters omitted }
(JAX-WS WebMethod で) ヘッダーに次のような要素 ID を作成するにはどうすればよいですか?
<Header> <ID>value</ID> </Header>
次のようなクラスを作成してそのインスタンスをプロパティに追加することも、要素を表すanyインスタンスをコレクションに追加することもできます。org.w3c.dom.ElementID
any
org.w3c.dom.Element
ID
@XmlRootElement(name="ID") @XmlAccessorType(XmlAccessType.FIELD) public class ID { @XmlValue private String value; }