以下は、アノテーションでnamespace
プロパティを指定する方法の例です。@XmlAttribute
入力.xml
<article xmlns:xlink="http://www.w3.org/1999/xlink">
<license xlink:href="http://creativecommons.org/licenses/by/2.0/uk/"/>
</article>
ライセンス
package forum10566766;
import javax.xml.bind.annotation.XmlAttribute;
public class License {
private String href;
@XmlAttribute(namespace="http://www.w3.org/1999/xlink")
public String getHref() {
return href;
}
public void setHref(String href) {
this.href = href;
}
}
論文
package forum10566766;
import javax.xml.bind.annotation.XmlRootElement;
@XmlRootElement
public class Article {
private License license;
public License getLicense() {
return license;
}
public void setLicense(License license) {
this.license = license;
}
}
デモ
package forum10566766;
import java.io.File;
import javax.xml.bind.*;
public class Demo {
public static void main(String[] args) throws Exception {
JAXBContext jc = JAXBContext.newInstance(Article.class);
Unmarshaller unmarshaller = jc.createUnmarshaller();
File xml = new File("src/forum10566766/input.xml");
Article article = (Article) unmarshaller.unmarshal(xml);
Marshaller marshaller = jc.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(article, System.out);
}
}
出力
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<article xmlns:ns1="http://www.w3.org/1999/xlink">
<license ns1:href="http://creativecommons.org/licenses/by/2.0/uk/"/>
</article>
名前空間のプレフィックスを制御したいですか?
ドキュメントが XML にマーシャリングされるときに使用される名前空間プレフィックスを制御する場合は、次の記事を参照してください。