解决方法
使用Restlet 2,您可以:
>测试@Post acceptRepresentation(表示实体)中的实体媒体类型兼容性:
@Post public Representation acceptRepresentation(Representation entity) throws ResourceException { if (entity.getMediaType().isCompatible(MediaType.APPLICATION_JSON)) { // ... } // ... }
>或使用@Post与一个或两个参数:
@Post("json") Representation acceptAndReturnJson(Representation entity) { // ... }
请看这些链接:
> http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447&dsMessageId=2585586
> http://www.restlet.org/documentation/2.0/jse/api/org/restlet/resource/Post.html
(使用Restlet 1,您需要测试实体的类型.)