我正在使用Apache CXF拦截器进行日志记录
<cxf:inInterceptors>
<bean class="org.apache.cxf.interceptor.LoggingInInterceptor" />
</cxf:inInterceptors>
<cxf:outInterceptors>
<bean class="org.apache.cxf.interceptor.LoggingOutInterceptor" />
</cxf:outInterceptors>
但LoggingOutInterceptor以&amp; lt和&amp; gt格式记录我的交换有效载荷
像这样<firstname>Chittaranjan</firstname>
<lastname>Panda</lastname>
但我想用这种格式
<firstname>Chittaranjan</firstname>
<lastname>Panda</lastname>