0

Jersey を使用する Java Web サービスがあります。今、マップのマップ (行と列) をクライアントに送信したいと考えています。

そのままにしておくと、すべて正常に動作します。しかし、XMLOutput は次のようになります...

data>
    <entry>
        <key>0</key>
        <value>
            <data>
                <entry>
                    <key>id</key>
                    <value>20</value>
                </entry>
                <entry>
                    <key>status</key>
                    <value>test</value>
                </entry>
                <entry>
                    <key>number</key>
                    <value>20</value>
                </entry>
                <entry>
                    <key>cars</key>
                    <value>3</value>
                </entry>

            </data>
        </value>
    </entry>
</data>

でも、こういうのが欲しい…。

 <data>
    <entry row=0>
        <column name=id>20</column>
        <column name=status>OK</column>
        <column name=number>1</column>
        <column name=cars>1</column>
    </entry>
    <entry row=1>
        <column name=id>21</column>
        <column name=status>OK</column>
        <column name=number>1</column>
        <column name=cars>2</column>
    </entry>
    <entry row=2>
        <column name=id>22</column>
        <column name=status>OK</column>
        <column name=number>1</column>
        <column name=cars>3</column>
    </entry>
</data>

XML 出力を制御するために XmlAdapters を使用したいのですが、うまくいきません。

行を含むクラス:

public class CoDataList{

   public LinkedHashMap<Integer,  CoDataMap> data = new LinkedHashMap<Integer,CoDataMap>();

}

列を含むクラス:

public class CoDataMap {

   public LinkedHashMap<String, String> data = new LinkedHashMap<String, String>();

}

オブジェクトを適切にマーシャリングするには、XmlAdapter と Types をどのように記述すればよいでしょうか?

私はこのようなことをしました...しかし、次のXmlAdapterをどこに追加しますか?

行と列を含む MainClass

@XmlRootElement
public class Response implements Cloneable{

    @XmlJavaTypeAdapter(CoDataListAdapter.class)
    public CoDataList data = new CoDataList();

}

ここで、CoDataList と CoDataMap のアダプターを作成しました。

public class CoDataListAdapter extends XmlAdapter<CoDataListType, CoDataList>{

@Override
public CoDataListType marshal(CoDataList v) throws Exception {
    CoDataListType rows = new CoDataListType();
            for (int currentRow : v.data.keySet()){
        CoDataListEntryType row= new CoDataListEntryType();
            row.key = currentRow;
        row.map = v.data.get(currentRow);
        rows.entry.add(row);
    }
    return rows;
}

@Override
public CoDataList unmarshal(CoDataListType v) throws Exception {
    // TODO Auto-generated method stub
    return null;
}

}

public class CoDataMapAdapter extends XmlAdapter<CoDataMapType, CoDataMap> {

@Override
public CoDataMapType marshal(CoDataMap v) throws Exception {
    CoDataMapType columns = new CoDataMapType();
    for (String curCol : v.data.keySet()){
                    CoDataMapEntryType column= new CoDataMapEntryType();
        column.key = curCol;
        column.value = v.data.get(curCol);
        columns.entry.add(column);
    }
    // TODO Auto-generated method stub
    return columns;
}

@Override
public CoDataMap unmarshal(CoDataMapType v) throws Exception {
    //...
}
}

public class CoDataListType {
    public List<CoDataListEntryType> entry = new ArrayList<CoDataListEntryType>();
}

public class CoDataListEntryType {

@XmlAttribute(name="row")
    public Integer key; 

    @XmlValue
    @XmlJavaTypeAdapter(CoDataMapAdapter.class)
    public CoDataMap map;
}

この時点で、例外が発生しています。

@XmlAttribute/@XmlValue は、XML.xmladapter のテキストにマップされる Java 型を参照する必要があります


public class CoDataMapType {
    public List<CoDataMapEntryType> entry = new ArrayList<CoDataMapEntryType>();
}

public class CoDataMapEntryType {
    @XmlAttribute(name="column")
    public String key; 

    @XmlValue
    public String value;
}

どうすればいいのかわからないので、よろしくお願いします。ありがとうございました

4

1 に答える 1

0

私は今これを解決しました:

次のクラスを変更する必要があります。

public class CoDataListAdapter extends XmlAdapter<CoDataListType, CoDataList<CoDataMap<String, String>>>{

@Override
public CoDataListType marshal(CoDataList<CoDataMap<String, String>> v) throws Exception {


    CoDataListType rows = new CoDataListType();

    for (int currentRow : v.keySet()){

        CoDataListEntryType row= new CoDataListEntryType();

        row.key = currentRow;

        for (String key : v.get(currentRow).keySet()){
            CoDataMapEntryType column = new CoDataMapEntryType();

            column.name = key;
            column.value = v.get(currentRow).get(key);

            row.column.add(column);
        }


        rows.row.add(row);


    }


    return rows;
}

@Override
public CoDataList<CoDataMap<String, String>> unmarshal(CoDataListType v) throws Exception {


    CoDataList<CoDataMap<String,String>> rows =  new CoDataList<CoDataMap<String,String>>();

    for (CoDataListEntryType row : v.row){


        CoDataMap<String, String> columns = new CoDataMap<String, String>();
        for (CoDataMapEntryType column : row.column){
            columns.put(column.name, column.value);
        }
        rows.put(row.key, columns);

    }




    // TODO Auto-generated method stub
    return rows;
}

}

public class CoDataListEntryType {

 @XmlAttribute(name="id")
 public Integer key; 

 @XmlElement
 public List<CoDataMapEntryType> column = new ArrayList<CoDataMapEntryType>();
}

これで、必要なアダプターは 1 つだけになりました。クラス CoDataMapAdapter および CoDataMapType は不要です。

于 2012-05-24T08:13:02.597 に答える