3

Log コンポーネントを使用して、Apache Camel (2.10.3) でストリームの本文 (soap メッセージ) をログに記録する方法を知っています。ただし、Log の代わりに Tracer を使用したいと考えています。

ドキュメントにはLOG_DEBUG_BODY_STREAMS プロパティを有効にするように書かれていますが、私はそれを行いましたが、違いはないようです:

    <bean id="camelTracer" class="org.apache.camel.processor.interceptor.Tracer">
    <property name="traceOutExchanges" value="true"/>
    <property name="traceExceptions" value="true"/>
    <property name="logStackTrace" value="true"/>
    <property name="traceInterceptors" value="true"/>
    <property name="logLevel" value="TRACE"/>
    <property name="logName" value="xxx.cameltracer"/>
</bean>     

<bean id="traceFormatter" class="org.apache.camel.processor.interceptor.DefaultTraceFormatter">
    <property name="showBody" value="true"/>
    <property name="showOutBody" value="true"/>
    <property name="showBodyType" value="false"/>
    <property name="showBreadCrumb" value="true"/>
    <property name="showHeaders" value="false"/>
</bean> 

<camelContext id="camelContext" xmlns="http://camel.apache.org/schema/spring" streamCache="true" trace="true">
    <properties>
       <property key="CamelLogDebugBodyStreams" value="true"/>
    </properties>
    ...

他に設定する必要があることはありますか?

4

1 に答える 1

3

プロパティに type-o があります。次のようにする必要があります。

<camelContext id="camelContext" xmlns="http://camel.apache.org/schema/spring" streamCache="true" trace="true">
    <properties>
       <property key="CamelLogDebugStreams" value="true"/>
    </properties>
于 2013-02-01T11:34:30.073 に答える