使っているから
<cxf:inInterceptors>
<ref bean="XCustomInterceptor"/>
</cxf:inInterceptors>
ドキュメントを確認してくださいhttp://cxf.apache.org/docs/bus-configuration.html
inInterceptors インターセプターは、受信メッセージ インターセプター チェーンに貢献しました。または のリスト
サーバーとクライアントのインバウンド接続とアウトバウンド接続に特定のインターセプターを使用できます
たとえば、これは jax-ws エンドポイントと、in および out インターセプターを使用したクライアントの構成です。
<!-- The SOAP endpoint -->
<jaxws:endpoint
id="helloWorld"
implementor="demo.spring.HelloWorldImpl"
address="http://localhost/HelloWorld">
<jaxws:inInterceptors>
<ref bean="customInInterceptor"/>
</jaxws:inInterceptors>
<jaxws:outInterceptors>
<ref bean="customOutInterceptor"/>
</jaxws:outInterceptors>
</jaxws:endpoint>
<!-- The SOAP client bean -->
<jaxws:client id="helloClient"
serviceClass="demo.spring.HelloWorld"
address="http://localhost/HelloWorld">
<jaxws:inInterceptors>
<ref bean="customClientInInterceptor"/>
</jaxws:inInterceptors>
<jaxws:outInterceptors>
<ref bean="customClientOutInterceptor"/>
</jaxws:outInterceptors>
</jaxws:client>