如何使用带有JSON的CXF服务将多个对象发送到Web服务

时间:2011-07-26 06:28:38

标签: json cxf

我有一个web服务,它接受3种不同类型的对象。我想使用JSON传递这些对象........并将服务器端视为JSON,我将对象转换为java对象。

任何人都可以告诉我代码。

我的对象是Emploee,Student和cource .....

1 个答案:

答案 0 :(得分:0)

@POST
@Path("<some path here>")
public Response addBookJaxbJson(
    @Multipart(value = "employee", type = "application/json") Employee emp,
    @Multipart(value = "student", type = "application/json") Student student,
    @Multipart(value = "course", type = "application/json") Course course) 
    throws Exception {
}

当然,您的客户端必须从表单或以某种方式构建多部分数据。