我正在尝试将Long
我的资源中的列表作为发布数据传递,并且使用类型为application/xml
. 我还传递了两个路径参数。它给了我例外“不支持媒体类型”。
请帮我解决这个问题。这是代码,我有异常..
@POST
@Path("/temp/{abc}")
@Consumes(MediaType.APPLICATION_XML)
@Produces(MediaType.APPLICATION_XML)
public List<Long> createUser2(List<User> users,@PathParam("abc") String abc) {
//.................//
List<Long> listLong=new ArrayList<Long>();
listLong.add(1L);
listLong.add(2L);
System.out.println("temp called");
return listLong;
}
> org.glassfish.jersey.message.internal.MessageBodyProviderNotFoundException:
> MessageBodyWriter not found for media type=application/xml