我试图将方法添加到现有的Jersey Rest服务以获取对象列表的帖子。它不喜欢我这样做的方式,或者我错过了一个依赖或什么......任何帮助都会受到赞赏。
服务标记:
@POST
@Consumes({ MediaType.APPLICATION_JSON })
public boolean update(@HeaderParam("Authorization") String token, @FormParam("photos") ArrayList<UiPhoto> uiPhotos) {
错误:
SEVERE: The following errors and warnings have been detected with resource and/or provider classes:
SEVERE: Missing dependency for method public boolean com.creo.services.PhotoService.update(java.lang.String,java.util.ArrayList) at parameter at index 1
SEVERE: Method, public boolean com.creo.services.PhotoService.update(java.lang.String,java.util.ArrayList), annotated with POST of resource, class com.creo.services.PhotoService, is not recognized as valid resource method.
这会编译,但是对服务方法的请求会因这些错误而爆炸。
答案 0 :(得分:0)
您可能应该包含ArrayList的数据类型。
以下虚拟示例的工作原理是您在POST请求的正文中发送Item
对象,编码为JSON或XML。
@POST
@Path("/{shoppingListId}/additem")
@Consumes({ MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON })
@Produces({ MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON })
public Response addItemToShoppingList(
@PathParam("shoppingListId") String id, Item item) {
String itemId = UUID.randomUUID().toString();
item.setId(itemId);
if (listNames.containsKey(id)) {
if (listItems.get(id) != null) {
listItems.get(id).add(item);
} else {
ArrayList<Item> items = new ArrayList<Item>();
items.add(item);
listItems.put(id, items);
}
} else {
throw new WebApplicationException(404);
}
return Response.status(201).entity(item).build();
}
对象项需要使用@XmlRootElement
进行注释。
import javax.xml.bind.annotation.XmlRootElement;
@XmlRootElement
public class Item {
String id;
String name;
String price;
// getters and setters ...
}
答案 1 :(得分:0)
使用UiPhoto []代替ArrayList。希望它有所帮助。