我正在尝试使用此REST服务
@POST
@Path(value="/storeGeneric")
@Consumes(MediaType.APPLICATION_JSON)
public <T> void storeGeneric(T data) {
try {
System.out.println("data name: "+data.getClass().getCanonicalName());
...
} catch (Exception e) {
e.printStackTrace();
}
}
通过此javascript函数传递JSON对象:
function sendArticolo() {
var articolo = {};
articolo.id = 1;
articolo.prezzo = 1;
articolo.descrizione="roba";
try {
$.ajax({
url: 'http://localhost:8080/ZZCrudRest/services/Rest/storeArticolo',
type: 'POST',
contentType: 'application/json',
data: JSON.stringify(articolo),
dataType: 'json'
});
} catch (err) {
alert(err.message);
}
}
但是,我遇到了这个例外:
12:37:26,294 GRAVE [com.sun.jersey.spi.container.ContainerResponse] (http-127.0.0.1-127.0.0.1-8080-1) The RuntimeException could not be mapped to a response, re-thr
owing to the HTTP container: java.lang.ClassCastException: java.lang.reflect.Method cannot be cast to java.lang.Class
at com.owlike.genson.reflect.TypeUtil.getTypes(TypeUtil.java:362) [genson-0.94.jar:]
at com.owlike.genson.reflect.TypeUtil.match(TypeUtil.java:298) [genson-0.94.jar:]
at com.owlike.genson.convert.BasicConvertersFactory.provide(BasicConvertersFactory.java:102) [genson-0.94.jar:]
at com.owlike.genson.convert.BasicConvertersFactory.create(BasicConvertersFactory.java:74) [genson-0.94.jar:]
at com.owlike.genson.convert.BasicConvertersFactory.create(BasicConvertersFactory.java:56) [genson-0.94.jar:]
(more and more...)
有没有办法使用JSON使用带有泛型参数的REST服务?我google了很多没有成功。我正在使用Jersey 1.8,genson 0.94,jboss 7.1。
答案 0 :(得分:1)
这不起作用Genson不知道T的类型,因此无法正确反序列化它。顺便说一句,这里没有办法知道这种类型(有或没有genson)。 genson的解决方案是:
1)将签名更改为:public void storeGeneric(Object data)
2)然后在客户端的json中添加根对象的类型(js代码),假设您不想反序列化为com.mypackage.FooBar 然后在你的json中你必须有:{“@ class”:“com.mypackage.FooBar”,......其余的属性...}
注意:“@ class”:“yourclass”必须是对象的第一个键/值对。
Genson将从那里获得类型。
在服务器端,您必须通过执行以下操作在Genson中启用多态类型的支持:
@Provider
public class GensonCustomResolver implements ContextResolver<Genson> {
// configure the Genson instance
private final Genson genson = new Genson.Builder().setWithClassMetadata(true).create();
@Override
public Genson getContext(Class<?> type) {
return genson;
}
}
0.94还很老,你应该升级到最新版本:0.98