作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有这样的代码:
服务等级
@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 类需要做哪些更改?
最佳答案
在 ProductRow
类上添加注解 @XmlRootElement
关于post - 如何在 JAX-RS 中发布对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17987168/
我是一名优秀的程序员,十分优秀!