1

いくつかのアプリケーションにマッピング可用性ライブラリを提供するために、いくつかのブルドーザーマッピングファイルをアンマーシャリングしようとしています。しかし、JaxBアノテーションを正しく機能させることができません。nullまたは空としてマーシャリングされていないマッピングのリスト

マッピングファイルから、私が興味を持っているのはすべてです。

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<mappings>
    <mapping>
        <class-a>package.MySourceClass</class-a>
        <class-b>other.package.DestinationClass</class-b>
    </mapping>
</mappings>

マッピングクラスがあります

@XmlRootElement(name="mappings")
@XmlAccessorType(XmlAccessType.FIELD)
public class Mappings {

    @XmlElementWrapper(name="mappings")
    private List<Mapping> mappingEntries = null;

//Getters and setters omitted

およびマッピングクラス

@XmlRootElement(name="mapping")
@XmlAccessorType(XmlAccessType.FIELD)
public class Mapping {


    @XmlElement(name ="class-a")
    private String classA;

    @XmlElement(name = "class-b")
    private String classB;

注釈の組み合わせを何度も試しましたが、何が間違っているのか理解できません。

誰かが私を正しい方向に向けることができますか?

4

2 に答える 2

1

次のことができます。

マッピング

package forum11193953;

import java.util.List;
import javax.xml.bind.annotation.*;

@XmlRootElement(name="mappings") // Match the root element "mappings"
@XmlAccessorType(XmlAccessType.FIELD)
public class Mappings {

    @XmlElement(name="mapping") // There will be a "mapping" element for each item.
    private List<Mapping> mappingEntries = null;

}

マッピング

package forum11193953;

import javax.xml.bind.annotation.*;

@XmlAccessorType(XmlAccessType.FIELD)
public class Mapping {


    @XmlElement(name ="class-a")
    private String classA;

    @XmlElement(name = "class-b")
    private String classB;

}

デモ

package forum11193953;

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

public class Demo {

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

        Unmarshaller unmarshaller = jc.createUnmarshaller();
        File xml= new File("src/forum11193953/input.xml");
        Mappings mappings = (Mappings) unmarshaller.unmarshal(xml);

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

}

input.xml/出力

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<mappings>
    <mapping>
        <class-a>package.MySourceClass</class-a>
        <class-b>other.package.DestinationClass</class-b>
    </mapping>
</mappings>
于 2012-06-25T17:27:16.343 に答える
0

JMapper フレームワークを試す: http://code.google.com/p/jmapper-framework/

JMapper を使用すると、動的マッピングのすべての利点と静的コードのパフォーマンスなどを利用できます。

于 2012-09-24T08:12:56.993 に答える