0

I'm using Mule Standalone. From Mule Studio I'm using a connector I've installed, but since the standalone doesn't have it, it throws an error saying that it can't find the connector amqp:connector etc...

How can I install components in the Mule Standalone?

4

2 回答 2

1

当你构建它的包时,它应该/lib由 Maven 作为依赖项引入你的应用程序目录。

对于最新版本的 AMQP 传输,请使用:

<dependency>
  <groupId>org.mule.transports</groupId>
  <artifactId>mule-transport-amqp</artifactId>
  <version>3.4.0</version>
</dependency>
于 2013-09-16T17:07:57.350 回答
0

在导出到独立之前检查您的连接器是否在您的项目类路径中。如果您将连接器拖放到流中并保存,则可以自动执行此操作。

于 2013-09-16T17:33:57.747 回答