使用APIKit时未找到类org.mule.module.jersey.MuleResponseWriter$1的序列化程序

使用APIKit时未找到类org.mule.module.jersey.MuleResponseWriter$1的序列化程序,mule,mule-studio,Mule,Mule Studio,当我使用带Rest(jersey)组件的APIKit路由器时,我得到了一个异常(如下所示),当我使用流引用而不是API路由器(下面插入的流片段)时,不会发生此异常。有什么线索吗 消息:找不到类org.mule.module.jersey.MuleResponseWriter$1的序列化程序,也找不到创建BeanSerializer的属性(为了避免异常,请在空bean上禁用SerializationConfig.Feature.FAIL)(org.codehaus.jackson.map.Json

当我使用带Rest(jersey)组件的APIKit路由器时,我得到了一个异常(如下所示),当我使用流引用而不是API路由器(下面插入的流片段)时,不会发生此异常。有什么线索吗

消息:找不到类org.mule.module.jersey.MuleResponseWriter$1的序列化程序,也找不到创建BeanSerializer的属性(为了避免异常,请在空bean上禁用SerializationConfig.Feature.FAIL)(org.codehaus.jackson.map.JsonMappingException)

代码:MULE_错误--2 异常堆栈是: 1.找不到类org.mule.module.jersey.MuleResponseWriter$1的序列化程序,也找不到创建BeanSerializer的属性(为避免异常,请禁用空bean上的SerializationConfig.Feature.FAIL_))(org.codehaus.jackson.map.JsonMappingException) org.codehaus.jackson.map.ser.impl.UnknownSerializer:52(空) 2.找不到类org.mule.module.jersey.mulerensponsewriter$1的序列化程序,也找不到创建BeanSerializer的属性(为了避免异常,请禁用空bean上的SerializationConfig.Feature.FAIL_))(org.codehaus.jackson.map.JsonMappingException)(org.mule.api.transformer.TransformerException) org.mule.module.json.transformers.ObjectToJson:103

<flow name="main" doc:name="main">
    <http:inbound-endpoint  doc:name="HTTP" exchange-pattern="request-response" host="localhost" port="9081"/>
    <logger level="INFO" doc:name="Logger"/>
         <apikit:router config-ref="apiConfig" doc:name="APIkit Router"/>
    <exception-strategy ref="apiKitGlobalExceptionMapping" doc:name="Reference Exception Strategy"/>
</flow>
<flow name="wine-cellar-muleFlow1" doc:name="wine-cellar-muleFlow1">
    <jersey:resources doc:name="REST">
        <component class="WineResource"/>
    </jersey:resources>
    <json:object-to-json-transformer doc:name="Object to JSON"/>
</flow>

我相信类mulerensponsewriter有一些字段没有公共getter或setter