Java 如何在jboss-webservices.xml中添加out fault拦截器?

Java 如何在jboss-webservices.xml中添加out fault拦截器?,java,web-services,jboss,cxf,wildfly,Java,Web Services,Jboss,Cxf,Wildfly,据我所知,我们可以在jboss-webservices.xml中添加“in”拦截器和“out”拦截器,如下所示: <?xml version="1.1" encoding="UTF-8"?> <webservices xmlns="http://www.jboss.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLoc

据我所知,我们可以在jboss-webservices.xml中添加“in”拦截器和“out”拦截器,如下所示:

<?xml version="1.1" encoding="UTF-8"?>
<webservices
  xmlns="http://www.jboss.com/xml/ns/javaee"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  version="1.2"
  xsi:schemaLocation="http://www.jboss.com/xml/ns/javaee">

  <property>
    <name>cxf.interceptors.in</name>
    <value>org.jboss.test.ws.jaxws.cxf.interceptors.BusInterceptor</value>
  </property>
  <property>
    <name>cxf.interceptors.out</name>
    <value>org.jboss.test.ws.jaxws.cxf.interceptors.BusCounterInterceptor</value>
  </property>
</webservices>

cxf.interceptors.in
org.jboss.test.ws.jaxws.cxf.interceptors.BusInterceptor
cxf.interceptors.out
org.jboss.test.ws.jaxws.cxf.interceptors.BusCounterInterceptor

但是如何添加out fault拦截器呢?

有什么原因不能使用标准JAX-WS s吗?有什么原因不能使用标准JAX-WS s吗?