我已经将Spring版本从4.2.3更新到5.0.2,将安全性从5.0.1更新到5.0.10,并使用了spring-flex版本1.6.0.RC1。

使用这样的BlazeDS依赖关系。

    <!--=| BlazeDS Dependencies |=-->
    <dependency org="com.adobe.blazeds" name="blazeds-core" rev="4.0.0.14931"/>
    <dependency org="com.adobe.blazeds" name="blazeds-common" rev="4.0.0.14931"/>
    <dependency org="com.adobe.blazeds" name="blazeds-remoting" rev="4.0.0.14931"/>


但我正在追随异常。

  SEVERE: Exception sending context initialized event to listener instance of class [org.springframework.web.context.ContextLoaderListener]
org.springframework.beans.factory.BeanCreationException: Error creating bean with name '_messageBrokerDefaultHandlerMapping': Initialization of bean failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name '_messageBroker': Invocation of init method failed; nested exception is org.springframework.beans.factory.BeanInitializationException: MessageBroker initialization failed; nested exception is java.lang.NoClassDefFoundError: org/springframework/core/JdkVersion
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:591)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:502)
    at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:312)
    at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:228)
    at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:310)

最佳答案

Flex Bean _messageBroker初始化失败。
似乎它仅支持Spring 4.X,而Spring 5.X中不推荐使用JdkVersion。

10-05 21:24
查看更多