我知道在使用Marshaller时如何打开格式的可能性.但我正在使用Apache CXF(JAX-RS)并返回响应,如返回Response.ok(entity).build();.
我还没有找到任何选项如何格式化输出.我该怎么做?
解决方法
首先,获取格式化
XML输出的方法是在marshaller上设置正确的属性(在使用CXF时通常是JAXB,这是正常的,因为JAXB做了可靠的工作).也就是说,在某个地方你会有这样的事情:
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT,true);
问题是您不一定要将所有输出格式化;它增加了相当多的开销.幸运的是,你已经产生了一个明确的响应,所以我们可以使用更多的功能:
Marshaller marshaller = JAXBContext.newInstance(entity.getClass()).createMarshaller(); marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT,true); StringWriter sw = new StringWriter(); marshaller.marshal(entity,sw); return Response.ok(sw.toString(),MediaType.APPLICATION_XML_TYPE).build();
在this JIRA issue中提到了另一种方法(本身已关闭,但这对你来说不是一个问题):
The workaround is to register a custom output handler which can check whatever custom query is used to request the optional indentation:
07001
JAXBElementProvider and JSONProvider are driven by the JAXB Marshaller so by default they check a Marshaller.JAXB_FORMATTED_OUTPUT property on the current message.
这导致代码如下:
public class FormattedJAXBInterceptor extends AbstractPhaseInterceptor<Message> { public FormattedJAXBInterceptor() { super(Phase.PRE_STREAM); } public void handleMessage(Message message) { message.put(Marshaller.JAXB_FORMATTED_OUTPUT,Boolean.TRUE); } public void handleFault(Message messageParam) { message.put(Marshaller.JAXB_FORMATTED_OUTPUT,Boolean.TRUE); } }