我已经使用 jersey 在 JAVA 中构建了一个 REST Web 服务。一切正常,直到我将 MediaType 从 application_xml 切换到 application_json。
如果我使用 XML,那么一切正常:
客户端:
public static CoResponse rO = new CoResponse();
rO = service.path("check-in").accept(MediaType.APPLICATION_XML).put(CoResponse.class, rO);
服务器端:
@PUT
@Consumes(MediaType.APPLICATION_XML)
public CoResponse newCheckin(JAXBElement<CoResponse> obj){
CoResponse newObj = obj.getValue();
//DO SOMETHING....
return newObj
}
当我将 MediaType 更改为 Application_JSON 时,我收到 415 unsupported type 错误:
客户端:
public static CoResponse rO = new CoResponse();
rO = service.path("check-in").accept(MediaType.APPLICATION_JSON).put(CoResponse.class, rO);
服务器端:
@PUT
@Consumes(MediaType.APPLICATION_JSON)
public CoResponse newCheckin(JAXBElement<CoResponse> obj){
CoResponse newObj = obj.getValue();
//DO SOMETHING....
return newObj
}
使用 JSON 时还有其他事情要做吗?谢谢你。
我使用的类如下:
共同响应对象:
@XmlRootElement
public class CoResponse {
private int code;
private String errorMessage;
//Datastore
public CoDataList<CoDataMap<String, String>> data = new CoDataList<CoDataMap<String, String>>();
}
CoDataList 对象:
public class CoDataList <V> implements Map<Integer, V>{
int nextIndex;
public Map<Integer, V> data = new HashMap<Integer,V>();
}
CoDataMap 对象:
public class CoDataMap <K, V> implements Map<K, V>{
public Map<K, V> data = new HashMap<K,V>();
}