我需要關於updateGroup
方法的方法簽名方面的幫助。 這裏是json im傳遞 - 它的一系列動作。如何使用jax rs將json對象傳遞給java rest webservice
[{"action":"add","key":"104"}]
這是它被傳遞到
@PUT
@Path("/group/{id}")
@Consumes(MediaType.APPLICATION_JSON)
@Produces(MediaType.APPLICATION_JSON)
public IRestResponse updateGroup(@PathParam("id") String GroupName,
Object GroupActions){
//Do Something...
}
的方法是什麼類型應該GroupActions
高於才能收到的JSON。 ? HashMap
,ArrayList
,有些組合?