次のようなコードがありました。
サービスクラス
@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 クラスにどのような変更を加える必要がありますか?