我有一个生成的 JAXB 类(来自 XSD)。我能够以 XML 和 JSON 的形式返回,但是只要将 text/html 添加到我的 Produces 注释中,我就会得到:
"No message body writer for response class Employee"
这是我的 API:
@GET
@Path("/employee/{employeeId}/getEmployeeById")
@Produces({"application/xml", "application/json", "text/html"})
public Employee getEmployeeById(@PathParam("employeeId") String employeeId);
这是我的客户电话(使用 CXF 客户端):
WebClient client = WebClient.create(basePath);
client = client.path("employeeervice/employee/1/getEmployeeById").
accept(MediaType.TEXT_HTML_TYPE).type(MediaType.TEXT_HTML_TYPE);
客户端响应为 500。
在 application/xml 中调用相同的 API,它工作正常。
Employee e = client.path("employeeservice/employee/1/getEmployeeById")
.accept(MediaType.APPLICATION_XML_TYPE).get(Employee.class);
我需要为 text/html 做些不同的事情吗?
谢谢