2

I'm trying to move from the JAXB reference implementation to EclipseLink JAXB (MOXy) because it appears to solve JAXB outputting invalid XML when data contains non-displayable chars but I have a problem with it displaying namespace tags.

This is how I create a JAXBContext

return JAXBContext.newInstance("org.musicbrainz.mmd2");

and this is the output I get

    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <metadata created="2013-02-27T12:12:13.305Z" 
        xmlns="http://musicbrainz.org/ns/mmd-2.0#" 
        xmlns:ext="http://musicbrainz.org/ns/ext#-2.0">
        <annotation-list count="1" offset="0">
            <annotation type="release" ext:score="100">
                <entity>bdb24cb5-404b-4f60-bba4-7b730325ae47</entity>
                <name>Pieds nus sur la braise</name>
                <text>EAN: 0828768226629 - DiscID: TWj6cLku360MfFYAq_MEaT_stgc-</text>
            </annotation>
        </annotation-list>
    </metadata>

I'm trying to get same output with EclipseLink MOXy, I get context as follows

 Map<String, Object> properties = new HashMap<String, Object>(1);
 properties.put(JAXBContextProperties.MEDIA_TYPE, "application/xml");
 return JAXBContextFactory.createContext(new Class[]{Metadata.class}, properties);

and this generates

<?xml version="1.0" encoding="UTF-8"?>
<ns0:metadata 
   xmlns:ns0="http://musicbrainz.org/ns/mmd-2.0#" 
   xmlns:ext="http://musicbrainz.org/ns/ext#-2.0" 
   created="2013-02-27T12:11:35.511Z">
   <ns0:annotation-list count="1" offset="0">
      <ns0:annotation type="release" ext:score="100">
         <ns0:entity>bdb24cb5-404b-4f60-bba4-7b730325ae47</ns0:entity>
         <ns0:name>Pieds nus sur la braise</ns0:name>
         <ns0:text>EAN: 0828768226629 - DiscID: TWj6cLku360MfFYAq_MEaT_stgc-</ns0:text>
      </ns0:annotation>
   </ns0:annotation-list>
</ns0:metadata>

I don't want the ns0 stuff, can I get rid of it

4

3 に答える 3

2

問題 1 - デフォルトの名前空間を使用する

パッケージ情報

パッケージ レベルの@XmlSchema注釈を使用して、名前空間の修飾を指定します。http://musicbrainz.org/ns/mmd-2.0#また、名前空間にプレフィックスを使用せず、名前空間にextプレフィックスを使用することもお勧めしhttp://musicbrainz.org/ns/ext#-2.0"ます。

@XmlSchema(
    namespace="http://musicbrainz.org/ns/mmd-2.0#",
    xmlns={
        @XmlNs(namespaceURI="http://musicbrainz.org/ns/mmd-2.0#", prefix=""),
        @XmlNs(namespaceURI = "http://musicbrainz.org/ns/ext#-2.0", prefix = "ext")
    }
)
package forum15111903;

import javax.xml.bind.annotation.*;

メタデータ

http://musicbrainz.org/ns/mmd-2.0#デフォルトでこのパッケージのすべての要素に適用されるため、ドメイン モデルにネームスペース情報を含める必要はありません。

package forum15111903;

import javax.xml.bind.annotation.*;
import javax.xml.datatype.XMLGregorianCalendar;

@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
public class Metadata {

    @XmlAttribute
    private XMLGregorianCalendar created;

}

詳細については


問題 2 - MOXy を JAXB (JSR-222) プロバイダーとしてブートストラップする

オプション 1 - 標準の JAXB API を使用する

jaxb.properties次のエントリを使用して、モデル クラスと同じパッケージで呼び出されるファイルを含めることができます(参照: http://blog.bdoughan.com/2011/05/specifying-eclipselink-moxy-as-your.html )。

javax.xml.bind.context.factory=org.eclipse.persistence.jaxb.JAXBContextFactory

次にJAXBContext、次のようにブートストラップできます。

package forum15111903;

import java.io.File;
import javax.xml.bind.*;

public class Demo {

    public static void main(String[] args) throws Exception {
        JAXBContext jc = JAXBContext.newInstance(Metadata.class);

        Unmarshaller unmarshaller = jc.createUnmarshaller();
        File xml = new File("src/forum15111903/input.xml");
        Metadata metadata = (Metadata) unmarshaller.unmarshal(xml);

        Marshaller marshaller = jc.createMarshaller();
        marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
        marshaller.marshal(metadata, System.out);
    }

}

オプション #2 - MOXy のネイティブ API を使用する

ファイルを使用したくない場合はjaxb.properties、MOXyJAXBContextFactoryクラスを利用して次の操作を実行できます。

package forum15111903;

import java.io.File;
import javax.xml.bind.*;
import org.eclipse.persistence.jaxb.JAXBContextFactory;

public class Demo {

    public static void main(String[] args) throws Exception {
        JAXBContext jc = JAXBContextFactory.createContext(new Class[] {Metadata.class}, null);

        Unmarshaller unmarshaller = jc.createUnmarshaller();
        File xml = new File("src/forum15111903/input.xml");
        Metadata metadata = (Metadata) unmarshaller.unmarshal(xml);

        Marshaller marshaller = jc.createMarshaller();
        marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
        marshaller.marshal(metadata, System.out);
    }

}

問題 3 - properties.put(JAXBContextProperties.MEDIA_TYPE, "application/xml");

MOXy のデフォルトのメディア タイプは です。application/xmlこのプロパティを使用しapplication/jsonて、JSON 出力を取得するように指定できます。

于 2013-02-27T14:25:58.243 に答える
1

直接使用するのではなく、次の行を含むJAXBContextFactory名前のファイルを作成するだけですjaxb.properties

javax.xml.bind.context.factory=org.eclipse.persistence.jaxb.JAXBContextFactory

と同じディレクトリに配置すると、EclipseLinkJAXB実装が自動的に使用されますMetadata.javaJAXBContext.newInstance("org.musicbrainz.mmd2")

于 2013-02-27T12:40:45.470 に答える
0

アノテーションを使用して Java クラスを生成した場合、xjcまたは単にアノテーションを直接使用したくない場合は、MOXy バインディング ファイル (oxm) を介して行うことができます。

<?xml version="1.0"?>
<xml-bindings
  xmlns="http://www.eclipse.org/eclipselink/xsds/persistence/oxm"
  package-name="your.package.name">

  <xml-schema
    namespace="http://yournamespace">
    <xml-ns
      prefix=""
      namespace-uri="http://yournamespace">
    </xml-ns>
  </xml-schema>
</xml-bindings>

これは、Blaise が の投稿で提案したものと同等ですpackage-info

外部バインディング ファイルの使用方法については、この回答を参照してください。

于 2016-12-19T16:54:55.517 に答える