我有一些使用Apache CXF运行的Web服务,使用cxf:outInterceptors注册了特定的自定义出站拦截器。此拦截器旨在在响应返回Web服务客户端时执行。
<cxf:bus>
<cxf:outInterceptors>
<ref bean="myCustomInterceptorOutbound" />
</cxf:outInterceptors>
<cxf:inInterceptors>
</cxf:inInterceptors>
<cxf:features>
<cxf:logging />
</cxf:features>
</cxf:bus>
但是,如果我的某个Web服务最终调用一个单独的远程Web服务,我不希望在这种情况下调用该出站拦截器。
有没有办法为jaxws:client(或JaxWsProxyFactoryBean)指定不同的拦截器配置,即告诉“不使用”通过cxf:bus注册的拦截器?或者我是否需要从cxf:bus中删除拦截器并在每个jaxws:endpoint上单独注册?
答案 0 :(得分:0)
每个客户端/服务器单独添加拦截器。例如
<jaxws:client
serviceClass="no.bring.booking.Booking"
address="${bring.booking.webservice}" id="booking">
<jaxws:inFaultInterceptors>
<ref bean="loggingInInterceptor" />
</jaxws:inFaultInterceptors>
<jaxws:inInterceptors>
<bean class="com.greenbird.xmlformatter.cxf.LoggingInInterceptor">
<property name="prettyLogging" value="true" />
<property name="prettyPrinter" ref="prettyPrinter" />
</bean>
</jaxws:inInterceptors>
<jaxws:outInterceptors>
<bean class="com.greenbird.xmlformatter.cxf.LoggingOutInterceptor">
<property name="prettyLogging" value="true" />
<property name="prettyPrinter" ref="prettyPrinter" />
</bean>
</jaxws:outInterceptors>
<jaxws:outFaultInterceptors>
<ref bean="loggingOutInterceptor" />
</jaxws:outFaultInterceptors>
</jaxws:client>
并通过将它们声明为bean来共享一些拦截器。