0

我将 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 运行)。

任何想法?

谢谢

4

1 回答 1

0

我认为您不能将结构化 POJO 与查询参数一起使用,而只是简单的标量值?结构化值通常作为 PUT/POST 有效负载(以 JSON 或 XML 格式)发送。

于 2012-12-10T19:53:11.140 回答