Abdelhafid
Abdelhafid

Reputation: 211

Spring Flex - Interceptor - Cannot find class [flex.springintegration.core.DataServicesConfigProcessor]

I use Spring BlazeDS for integration between Flex and Spring in my Application Java EE.

Versions :

When i use :

<flex:message-broker />

It work fine.

But when i use interceptor, i have the following error :

<bean id="messageInterceptor" class="com.package.MessageInterceptorImpl"/>
<flex:message-broker>
        <flex:message-interceptor ref="messageInterceptorImpl"/>
</flex:message-broker>

Error:

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

Upvotes: 0

Views: 214

Answers (1)

Robin van den Bogaard
Robin van den Bogaard

Reputation: 520

Like the error states: he can't find the class flex.springintegration.core.DataServicesConfigProcessor Add the class to the runtime environment and you'll be good to go.

Most likely you are missing an jar file containing this class.

Upvotes: 0

Related Questions