我正在做一些事情,这些事情将通过REST返回文件中的XML。
我该如何有效地做到这一点?
这就是我拥有的:
@RequestMapping(value = "/test/", method = RequestMethod.POST, produces = "application/xml; charset=utf-8")
@ResponseBody
public File getFileAsXml() throws JAXBException {
File file = new File("C:/test/test.xml");
return File;
// I want to return file contents
}
但这似乎不起作用。
我基本上想生成XML并将其返回给调用方,以便他们可以读取响应。
最诚挚的问候