以下は、探している XML を生成するデモ コードです。Marshaller.JAXB_SCHEMA_LOCATION
プロパティを使用してschemaLocation
、http://www.w3.org/2001/XMLSchema-instance
名前空間が自動的に宣言されるように指定できます。
デモ
package myproject.myapp;
import javax.xml.bind.*;
public class Demo {
public static void main(String[] args) throws Exception {
JAXBContext jc = JAXBContext.newInstance(RootElement.class);
RootElement rootElement = new RootElement();
Marshaller marshaller = jc.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.setProperty(Marshaller.JAXB_SCHEMA_LOCATION, "http://www.mysite.com/abc.xsd");
marshaller.marshal(rootElement, System.out);
}
}
出力
以下は、デモ コードを実行した結果の出力です。
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<RootElement xmlns="http://www.mysite.com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.mysite.com/abc.xsd"/>
パッケージ情報
これはpackage-info
あなたの質問のクラスです。
@XmlSchema(
namespace = "http://www.mysite.com",
elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED
)
package myproject.myapp;
import javax.xml.bind.annotation.*;
ルート要素
以下は、ドメイン モデルの簡略化されたバージョンです。
package myproject.myapp;
import javax.xml.bind.annotation.XmlRootElement;
@XmlRootElement(name="RootElement")
public class RootElement {
}