JAXB @XmlAdapter:Map - >列表适配器? (仅限马歇尔) [英] JAXB @XmlAdapter: Map -> List adapter? (marshall only)

查看:168
本文介绍了JAXB @XmlAdapter:Map - >列表适配器? (仅限马歇尔)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个 Map< String,String>

每个人的第一个想法是将它转换为 List< Pair< String,String>> Pair 是一个自定义类)。

I have a Map<String, String>.
The first idea everyone has is to convert it to a List<Pair<String,String>> (Pair being a custom class).

我尝试过这样的 @XmlAdapter

public class MapPropertiesAdapter extends XmlAdapter<List<Property>, Map<String,String>> { ... }

但是Eclipse MOXy,我使用的JAXB impl,结果是 ClassCastException - 无法将HashMap转换为Collection。

But Eclipse MOXy, the JAXB impl I use, ended up with a ClassCastException - "can't convert HashMap to Collection".

JAXB是否支持此转换?或者我忽略了一些文档部分,它解释了为什么它不是?

Is this conversion supported by JAXB? Or did I overlook some documentation part which explains why it isn't?

PS:
我想得到这样的XML:

PS: I wanted to get XML like this:

<properties>
    <property name="protocol"/>
    <property name="marshaller"/>
    <property name="unmarshaller"/>
    <property name="timeout"/>
    ...
</properties>

我知道了,只需要使用中间类。另请参阅
处理XMLCompositeObjectMappingNodeValue.marshalSingleValue中的NPE(XMLCompositeObjectMappingNodeValue.java:161) )

I got it, only had to use an intermediate class. Also described at Handle NPE in XMLCompositeObjectMappingNodeValue.marshalSingleValue( XMLCompositeObjectMappingNodeValue.java:161)

推荐答案

而不是将地图改为列表,您应该将其改编为具有 List 属性的对象。

Instead of adapting the Map to a List, you should adapt it to an object that has a List property.

XmlAdapter(MapPropertiesAdapter)

import java.util.*;
import java.util.Map.Entry;
import javax.xml.bind.annotation.*;
import javax.xml.bind.annotation.adapters.XmlAdapter;

public class MapPropertiesAdapter extends XmlAdapter<MapPropertiesAdapter.AdaptedProperties, Map<String, String>>{

    public static class AdaptedProperties {
        public List<Property> property = new ArrayList<Property>();
    }

    public static class Property {
        @XmlAttribute
        public String name;

        @XmlValue
        public String value;
    }

    @Override
    public Map<String, String> unmarshal(AdaptedProperties adaptedProperties) throws Exception {
        if(null == adaptedProperties) {
            return null;
        }
        Map<String, String> map = new HashMap<String, String>(adaptedProperties.property.size());
        for(Property property : adaptedProperties.property) {
            map.put(property.name, property.value);
        }
        return map;
    }

    @Override
    public AdaptedProperties marshal(Map<String, String> map) throws Exception {
        if(null == map) {
            return null;
        }
        AdaptedProperties adaptedProperties = new AdaptedProperties();
        for(Entry<String,String> entry : map.entrySet()) {
            Property property = new Property();
            property.name = entry.getKey();
            property.value = entry.getValue();
            adaptedProperties.property.add(property);
        }
        return adaptedProperties;
    }

}

域模型(Root) )

下面是一个带有 Map 属性的模型对象。 @XmlJavaTypeAdapter 注释用于指定 XmlAdapter

Below is a model object with a Map property. The @XmlJavaTypeAdapter annotation is used to specify the XmlAdapter.

import java.util.Map;
import javax.xml.bind.annotation.*;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;

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

    @XmlJavaTypeAdapter(MapPropertiesAdapter.class)
    private Map<String, String> properties;

}

演示

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

public class Demo {

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

        Unmarshaller unmarshaller = jc.createUnmarshaller();
        File xml = new File("src/forum17024050/input.xml");
        Root root = (Root) unmarshaller.unmarshal(xml);

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

}

input.xml /输出

<?xml version="1.0" encoding="UTF-8"?>
<root>
    <properties>
        <property name="A">a</property>
        <property name="B">b</property>
    </properties>
</root>

这篇关于JAXB @XmlAdapter:Map - &gt;列表适配器? (仅限马歇尔)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆