web-dev-qa-db-ja.com

Log4jを使用してApache CXF SoapリクエストとSoapレスポンスを記録する方法は?

Apache CXFフレームワークを使用しています。クライアントプログラム内で、CXF SOAP Requests and SOAP Responses。

JaxWsProxyFactoryBean factory = new JaxWsProxyFactoryBean();
factory.setAddress(Host);
factory.setServiceClass(MyService.class);
factory.getInInterceptors().add(new LoggingInInterceptor());
factory.getOutInterceptors().add(new LoggingOutInterceptor());

これらを取得しましたSOAP RequestおよびSOAPコンソールでの応答:

Nov 9, 2011 6:48:01 PM org.Apache.cxf.interceptor.LoggingOutInterceptor$LoggingCallback onClose
INFO: Outbound Message
---------------------------
ID: 2
Encoding: UTF-8
Content-Type: text/xml
Headers: {}
Payload: <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:Body><ns4:MYResponse
--------------------------------------

しかし、実際の要件は、サーバーコンソールに印刷するのではなく、ログファイル内に保存する必要があることです。

示されているようにlog4jを直接使用した場合

log4j(factory.getInInterceptors().add(new LoggingInInterceptor()));
log4j(factory.getOutInterceptors().add(new LoggingOutInterceptor()));

ログファイル内でtrueおよびtrueのみを印刷しています。

誰でもこれを設定する方法を教えてもらえますか?

39
Pawan

_org.Apache.cxf.Logger_という名前のファイル(つまり、Logger拡張子を持つ_org.Apache.cxf_ファイル)を_/META-INF/cxf/_の下に次の内容で作成する必要があります。

_org.Apache.cxf.common.logging.Log4jLogger
_

参照: Java.util.loggingの代わりにLog4jを使用

また、標準を置き換える場合:

_<cxf:bus>
  <cxf:features>
    <cxf:logging/>
  </cxf:features>
</cxf:bus>
_

より詳細に:

_<bean id="abstractLoggingInterceptor" abstract="true">
    <property name="prettyLogging" value="true"/>
</bean>
<bean id="loggingInInterceptor" class="org.Apache.cxf.interceptor.LoggingInInterceptor" parent="abstractLoggingInterceptor"/>
<bean id="loggingOutInterceptor" class="org.Apache.cxf.interceptor.LoggingOutInterceptor" parent="abstractLoggingInterceptor"/>

<cxf:bus>
    <cxf:inInterceptors>
        <ref bean="loggingInInterceptor"/>
    </cxf:inInterceptors>
    <cxf:outInterceptors>
        <ref bean="loggingOutInterceptor"/>
    </cxf:outInterceptors>
    <cxf:outFaultInterceptors>
        <ref bean="loggingOutInterceptor"/>
    </cxf:outFaultInterceptors>
    <cxf:inFaultInterceptors>
        <ref bean="loggingInInterceptor"/>
    </cxf:inFaultInterceptors>
</cxf:bus>
_

Apache CXFは、適切なインデントと改行でフォーマットされたXMLメッセージをきれいに印刷します。非常に便利。それについての詳細 こちら

67

別の簡単な方法は、このようにロガーを設定することです。cxfWebサービス関連のクラスをロードする前にロガーを設定してください。いくつかの静的ブロックで使用できます。

YourClientConstructor() {

  LogUtils.setLoggerClass(org.Apache.cxf.common.logging.Log4jLogger.class);

  URL wsdlURL = YOurURL;//

  //create the service
  YourService = new YourService(wsdlURL, SERVICE_NAME);
  port = yourService.getServicePort(); 

  Client client = ClientProxy.getClient(port);
  client.getInInterceptors().add(new LoggingInInterceptor());
  client.getOutInterceptors().add(new LoggingOutInterceptor());
}

次に、受信メッセージと送信メッセージがコンソールではなくLog4jファイルに出力されます。 log4jが適切に構成されていることを確認してください

13
Vins

Preethi Jain szenarioできれいなログを記録する最も簡単な方法:

LoggingInInterceptor loggingInInterceptor = new LoggingInInterceptor();
loggingInInterceptor.setPrettyLogging(true);
LoggingOutInterceptor loggingOutInterceptor = new LoggingOutInterceptor();
loggingOutInterceptor.setPrettyLogging(true);
factory.getInInterceptors().add(loggingInInterceptor);
factory.getOutInterceptors().add(loggingOutInterceptor);
11
dpa

あなたの春のコンテキストでは、以下を設定するとリクエストとレスポンスの石鹸メッセージが記録されます。

<bean id="loggingFeature" class="org.Apache.cxf.feature.LoggingFeature">
    <property name="prettyLogging" value="true" />
</bean>

<cxf:bus>
    <cxf:features>
        <ref bean="loggingFeature" />
    </cxf:features>
</cxf:bus>
2
Manjunath

これは私のために働いた。

通常どおりlog4jをセットアップします。次に、このコードを使用します。

    // LOGGING 
    LoggingOutInterceptor loi = new LoggingOutInterceptor(); 
    loi.setPrettyLogging(true); 
    LoggingInInterceptor lii = new LoggingInInterceptor(); 
    lii.setPrettyLogging(true); 

    org.Apache.cxf.endpoint.Client client = org.Apache.cxf.frontend.ClientProxy.getClient(isalesService); 
    org.Apache.cxf.endpoint.Endpoint cxfEndpoint = client.getEndpoint(); 

    cxfEndpoint.getOutInterceptors().add(loi); 
    cxfEndpoint.getInInterceptors().add(lii);
2
Al Grant

このコードを試してください:

EndpointImpl impl = (EndpointImpl)Endpoint.publish(address, implementor);
    impl.getServer().getEndpoint().getInInterceptors().add(new LoggingInInterceptor());
    impl.getServer().getEndpoint().getOutInterceptors().add(new LoggingOutInterceptor());

logback.xml Webサービスのインターフェイス名を入力する必要があります。

<appender name="FILE" class="ch.qos.logback.classic.sift.SiftingAppender">
    <discriminator
        class="com.progressoft.ecc.integration.logging.ThreadNameDiscriminator">
        <key>threadName</key>
        <defaultValue>unknown</defaultValue>
    </discriminator>
    <filter class="ch.qos.logback.core.filter.EvaluatorFilter">
        <evaluator>
            <expression>logger.contains("InterfaceWebServiceSoap")</expression>
        </evaluator>
        <OnMismatch>DENY</OnMismatch>
        <OnMatch>NEUTRAL</OnMatch>
    </filter>
    <filter class="ch.qos.logback.classic.filter.ThresholdFilter">
        <level>TRACE</level>
    </filter>
    <sift>
        <appender name="FILE-${threadName}"
            class="ch.qos.logback.core.rolling.RollingFileAppender">
            <File>${LOGGING_PATH}/${threadName}.log</File>
            <rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
                <FileNamePattern>${ARCHIVING_PATH}/%d{yyyy-MM-dd}.${threadName}%i.log.Zip
                </FileNamePattern>
                <MaxHistory>30</MaxHistory>
                <TimeBasedFileNamingAndTriggeringPolicy
                    class="ch.qos.logback.core.rolling.SizeAndTimeBasedFNATP">
                    <MaxFileSize>50MB</MaxFileSize>
                </TimeBasedFileNamingAndTriggeringPolicy>
            </rollingPolicy>
            <encoder class="ch.qos.logback.classic.encoder.PatternLayoutEncoder">
                <Pattern>%date{dd-MM-yyyy HH:mm:ss.SSS} | %5level | %-60([%logger{53}:%line]): %msg %ex{full} %n</Pattern>
            </encoder>
        </appender>
    </sift>
</appender>

<root>
    <level value="ALL" />
    <appender-ref ref="FILE" />
</root>
1

cxf.xml

<cxf:bus>
    <cxf:ininterceptors>
        <ref bean="loggingInInterceptor" />
    </cxf:ininterceptors>
    <cxf:outinterceptors>
        <ref bean="logOutInterceptor" />
    </cxf:outinterceptors>
</cxf:bus>

org.Apache.cxf.Logger

org.Apache.cxf.common.logging.Log4jLogger

スクリーンショットを確認してください こちら

1
Jose

log4j.propertiesを設定する場合、org.Apache.cxfロギングレベルをINFOに設定するだけで、プレーンSOAP=メッセージを表示できます。

log4j.logger.org.Apache.cxf=INFO

DEBUGは冗長すぎます。

1
dpinya

Playフレームワークを使用して(そしてLogBack http://logback.qos.ch/ を使用して)誰かがこれを行いたい場合は、次の行でapplication-logger.xmlを構成できます。

 <logger name="org.Apache.cxf" level="DEBUG"/>

私にとっては、トリックをやった;)

0