ServiceMix 中使用 apache Camel 的 JMS 会生成错误
我在 Spring 中遇到 JMS 访问问题,我尝试配置 JMS 使用者并收到错误:
类别 org.springframework.core.task.SimpleAsyncTaskExecutor 没有执行所要求的 界面 java.util.concurrent.Executor
有谁知道如何解决这个问题,或者这到底意味着什么?我正在使用 Camel 2.4 并将我的服务部署到 ServiceMix 3.3。
I've got a problem with JMS access in spring, I try to configure JMS consumer and get an error:
Class
org.springframework.core.task.SimpleAsyncTaskExecutor
does not implement the requested
interface
java.util.concurrent.Executor
Does any one know how to solve this, or what this really means? I'm using Camel 2.4 and am deploying my service to ServiceMix 3.3.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我假设您正在使用 Spring 2.x。
似乎 Spring 2.x SimpleAsyncTaskExecutor 未实现 Java 核心 执行器接口。为了解决这个问题,我立刻想到了两个选择:
希望有帮助。
//尼古拉斯
I am assuming you are using Spring 2.x.
It seems that Spring 2.x SimpleAsyncTaskExecutor does not implement the Java core Executor interface. To resolve this, you have 2 options I can think of right off the bat:
Hope that helps.
//Nicholas
您也许可以使用 spring 2.5 重新编译camel-jms,这奇怪地可能会有所帮助。检查camel构建源文档,因为有一个maven配置文件可以使用spring 2.5。
You could maybe recompile camel-jms using spring 2.5 which oddly may help. Check camel building source docu as there is a maven profile to use spring 2.5.