我收到了这个错误
A message body reader for Java class java.util.List, and Java type java.util.List<Entities.service.GroupU>, and MIME media type text/html was not found
当我执行此代码时
GroupUClient client1 = new GroupUClient();
ClientResponse response = client1.findAll_XML(ClientResponse.class);
GenericType<List<GroupU>> genericType = new GenericType<List<GroupU>>() {
};
// Returns an ArrayList of Players from the web service
data = new ArrayList<GroupU>();
data = (response.getEntity(genericType));
问题是什么 ?