ServiceMix 中使用 apache Camel 的 JMS 会生成错误

发布于 2024-10-10 07:36:48 字数 267 浏览 6 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

一江春梦 2024-10-17 07:36:48

我假设您正在使用 Spring 2.x。

似乎 Spring 2.x SimpleAsyncTaskExecutor 未实现 Java 核心 执行器接口。为了解决这个问题,我立刻想到了两个选择:

  1. 升级到 Spring 3.x。 该版本的 SimpleAsyncTaskExecutor 确实实现了 Executor界面。
  2. 使用不同的 Executor 实现。 Java核心有内置的 ThreadPoolExecutor,或者您可以使用 ExecutorService 构建相同的多种不同配置。

希望有帮助。

//尼古拉斯

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:

  1. Upgrade to Spring 3.x. That version of SimpleAsyncTaskExecutor does implement the Executor interface.
  2. Use a different Executor implementation. Java core has the built in ThreadPoolExecutor, or you can use the ExecutorService to construct a variety of different configurations of the same.

Hope that helps.

//Nicholas

桃酥萝莉 2024-10-17 07:36:48

您也许可以使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文