我将 jersey 1.2 与 jersey-server、jersey-json 和 jersey-spring 一起使用来创建 REST 服务。
我的服务之一
@Path("test")
public class TestViewRestController {
@GET
@Path("t1")
@Produces(MediaType.APPLICATION_JSON)
public RetPojo getPojo(
@QueryParam("token") @DefaultValue("null") String token,
@QueryParam("pojo") ParamPojo pojo,
@QueryParam("param2") @DefaultValue("null") String param2
) {
//do some stuff
}
}
我创建了一个 Provider :
@Provider
@Consumes(MediaType.APPLICATION_JSON)
public class MessageBodyReaderJSON implements MessageBodyReader<APojo> {
/**
* {@inheritDoc}
*/
public boolean isReadable(Class<?> type, Type genericType,
Annotation[] annotations, MediaType mediaType) {
return true;
}
/**
* {@inheritDoc}
*/
public APojo readFrom(Class<APojo> type, Type genericType,
Annotation[] annotations, MediaType mediaType,
MultivaluedMap<String, String> httpHeaders, InputStream entityStream)
throws IOException {
APojo p = new ObjectMapper().readValue(entityStream, APojo.class);
return p;
}
}
但是当我启动我的网络服务器时,会抛出以下异常:
com.sun.jersey.api.container.ContainerException:
Method, public my.package.TestViewRestController.getPojo( java.lang.String, my.package.APojo, java.lang.String),
annotated with GET of resource, class my.package.TestViewRestController,
is not recognized as valid Java method annotated with @HttpMethod.
当我用字符串替换 APojo 参数时,它可以工作。似乎提供商被忽略了。
对于 Jersey 的最新版本,我没有遇到问题(我也不必声明提供程序),但我无法升级,因为该应用程序需要在 Java 5 上运行(并且最后一个球衣仅从 Java 6 运行)。
任何想法?
谢谢