SpringFlex-Interceptor-找不到类[Flex.springintegration.core.DataServicesConfigProcessor]

SpringFlex-Interceptor-找不到类[Flex.springintegration.core.DataServicesConfigProcessor],spring,apache-flex,blazeds,lcds,Spring,Apache Flex,Blazeds,Lcds,我使用SpringBlazeDS在我的应用程序JavaEE中集成Flex和Spring 版本: spring-flex.version:1.5.2.0版本 lcds.version:4.7 当我使用: <flex:message-broker /> 与错误状态类似:他找不到类flex.springintegration.core.DataServicesConfigProcessor 将该类添加到运行时环境中,您就可以开始了 很可能您丢失了一个包含此类的jar文件 随着LCD或

我使用SpringBlazeDS在我的应用程序JavaEE中集成Flex和Spring

版本:

  • spring-flex.version:1.5.2.0版本

  • lcds.version:4.7

当我使用:

<flex:message-broker />

与错误状态类似:他找不到类flex.springintegration.core.DataServicesConfigProcessor 将该类添加到运行时环境中,您就可以开始了


很可能您丢失了一个包含此类的jar文件

随着LCD或BlazeDS安装程序的出现,一些jar文件,如“flex messaging-*.jar”,很可能就在其中。在构建时使用它们与在运行时使用它们不同,请记住这一点。
<bean id="messageInterceptor" class="com.package.MessageInterceptorImpl"/>
<flex:message-broker>
        <flex:message-interceptor ref="messageInterceptorImpl"/>
</flex:message-broker>
org.springframework.beans.factory.CannotLoadBeanClassException: Cannot find class [flex.springintegration.core.DataServicesConfigProcessor] for bean with name '_messageBrokerDataServicesConfigProcessor' defined in null; nested exception is java.lang.ClassNotFoundException: flex.springintegration.core.DataServicesConfigProcessor