如何将自定义MessageBodyWriter应用于对象列表?

时间:2017-11-12 22:31:22

标签: java jersey dropwizard

在Dropwizard Web服务中,我想使用以下自定义Test在数据库中返回类MessageBodyWriter的对象。

 @Provider
 @Produces("application/Test")
 public class TestMarshaller implements MessageBodyWriter<Test>{
     public long getSize(Test obj, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType) {
         return -1;
     }
     public boolean isWriteable(Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType) {
         return type == Test.class;
     }
     public void writeTo(Test obj, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType,
        MultivaluedMap<String, Object> httpHeaders, OutputStream outputStream) throws IOException, WebApplicationException {
        httpHeaders.add("Content-Type", "text/plain; charset=UTF-8");
        StringBuffer str = new StringBuffer();
        str.append(obj.getData());
        outputStream.write(str.toString().getBytes());  
     }
}

使用以下方法

可以很好地处理单个对象
@GET
@Produces("application/Test")
@Path("/{ID}")
public Test getTest(@PathParam(value = "ID") LongParam ID) {
    Test result = Test.findInDB(ID.get());
    return result;
}

现在我想使用相同的MessageBodyWriter作为元素列表。

@GET
@Produces("application/Test")
@Path("/{ID}")
public List<Test> getTest(@PathParam(value = "ID") String IDs) {
    List<Test> listTest = Test.findMultiInDB(IDs);
    return listTest;        
}

导致错误

  

org.glassfish.jersey.message.internal.WriterInterceptorExecutor:找不到媒体类型= application / Test的MessageBodyWriter,类型=类java.util.ArrayList,genericType = java.util.List。

JResponseJson建议使用GenericEntity

@GET
@Produces("application/Test")
@Path("/{ID}")
public Response getTest(@PathParam(value = "ID") String IDs) {
    List<Test> listTest = Test.findMultiInDB(IDs);
    GenericEntity<List<Test>> result = new GenericEntity<List<Test>>(listTest) {};
    return Response.ok(result).build(); 
}

不幸的是,它导致了与上述完全相同的错误 我的问题是,我需要更改哪些内容才能使其正常工作,或者需要另外MessageBodyWriter来处理列表?

1 个答案:

答案 0 :(得分:0)

错误消息很明显,Jersey查找MessageBodyWriter类型java.util.List,但只找到MessageBodyWriter<Test>,因此要为列表MessageBodyWriter<java.util.List>创建一个新的Object或使用{{1}}并在Object类上使用if else。