如何在服务器端使用 MOXy 生成的 XML 打印 XML,然后再将 XML 发送到 RESTful Web Service 客户端。
@GET
@Path("/sma")
@Produces({MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON})
public Representation getRepresentation() throws Exception
{
Representation rep= new Representation ();
rep.setFirstName("first name");
rep.setLastName("last name");
return rep;
}
在上面想要打印表示对象 XML 之前将其发送到 Web 服务客户端。