ルート要素の構造が次のようになるはずのxmlファイルを作成しています。
<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.Javaクラスを作成しましたが、このコードを記述することで名前空間を1つだけ取得できます。
@XmlSchema(
namespace = "http://www.mysite.com",
elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
package myproject.myapp;
import javax.xml.bind.annotation.XmlSchema;
何か案が?
以下は、探している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 {
}