3

我有这样的代码:

服务等级

@POST
@Path("/updateProduct.htm")
@Consumes("application/json")
@Produces(MediaType.APPLICATION_JSON)
public String updateProduct(ProductRow productRow) {
    // ...
}

客户端类

WebClient client = WebClient.create(getBaseUrl() + "/inventory/updateProduct.htm").accept(MediaType.APPLICATION_JSON);
client.post(productRow);

ProductRow 类

public class ProductRow {
    private Long id;
    private String name;
    // getter and setter methods
    //...
}

但它抛出org.apache.cxf.jaxrs.client.ClientWebApplicationException: .No message body writer has been found for class : class com.myfashions.ui.model.ProductRow, ContentType : application/xml.. 了关于如何做到这一点的任何想法?ProductRow 类需要做哪些更改?

4

1 回答 1

2

在类@XmlRootElement上方添加注释ProductRow

于 2013-08-01T08:09:00.587 回答