如何使用jersey封送解组Map

vzgqcmou  于 2021-06-30  发布在  Java
关注(0)|答案(1)|浏览(299)

我见过很多例子,其中一个Map作为一个类中的对象传递,并用一个定制的xmljavaadapter进行注解,该适配器用于对Map进行编组/解编。但是我试图在post请求中传递一个map本身作为requestedentity,响应也作为map,而不是一个包含map的类,我可以看到很多解决方案。。
输入类(请求的实体):genericmap.java

import java.util.HashMap;
import javax.xml.bind.annotation.XmlRootElement;

import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;

@XmlRootElement
@XmlJavaTypeAdapter(GenericMapAdapter.class)
public class GenericMap<K,V> extends HashMap<K,V> {

}

genericmapadapter.java文件

import java.util.HashMap;
import java.util.Map;
import java.util.Map.Entry;

import javax.xml.bind.annotation.adapters.XmlAdapter;

 public class GenericMapAdapter<K, V> extends XmlAdapter<MapType<K,V>, Map<K,V>> {

    @Override
    public MapType marshal(Map<K,V>  map) throws Exception {
        MapType<K,V> mapElements = new MapType<K,V>();        

        for (Map.Entry<K, V> entry : map.entrySet()){
            MapElementsType<K,V> mapEle = new MapElementsType<K,V>      (entry.getKey(),entry.getValue());
            mapElements.getEntry().add(mapEle);
        }
        return mapElements;
    }

    @Override
    public Map<K, V> unmarshal(MapType<K,V> arg0) throws Exception {
        Map<K, V> r = new HashMap<K, V>();
        K key;
        V value;
        for (MapElementsType<K,V> mapelement : arg0.getEntry()){
            key =mapelement.key;
            value = mapelement.value;
           r.put(key, value);
        }
        return r;

    }
}

Map类型.java

import java.util.ArrayList;
import java.util.List;
import java.util.Map;

import javax.xml.bind.annotation.XmlRootElement;

@XmlRootElement
public class MapType<K, V> {

    private List<MapElementsType<K, V>> entry = new ArrayList<MapElementsType<K, V>>();

    public MapType() {
    }

    public MapType(Map<K, V> map) {
        for (Map.Entry<K, V> e : map.entrySet()) {
            entry.add(new MapElementsType<K, V>(e.getKey(),e.getValue()));
        }
    }

    public List<MapElementsType<K, V>> getEntry() {
        return entry;
    }

    public void setEntry(List<MapElementsType<K, V>> entry) {
        this.entry = entry;
    }
}

mapelementstype.java文件

import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;

@XmlRootElement
public class MapElementsType<K,V>
{
  @XmlElement public K  key;
  @XmlElement public V value;

  public MapElementsType() {} //Required by JAXB

  public MapElementsType(K key, V value)
  {
    this.key   = key;
    this.value = value;
  }

}

当我将genericmap作为类的成员变量并用genericmapadapter对其进行注解时,它工作得很好。但是,我希望genericmap本身作为输入请求实体传递。当我尝试这样做时,我在日志中看到一个空的xml请求和400个错误的请求:

zf9nrax1

zf9nrax11#

我认为解决问题的方法是不使用jaxb,而是手动Map请求参数或响应:
在jersey中,如何使一些方法使用pojoMap特性,而另一些方法不使用pojoMap特性?

相关问题