找不到骆驼码头端点

Camel jetty endpoint could not be found

我遇到了问题,我需要向 url 发送获取请求。但我有例外:

Failed to create route route1: Route(route1)[From[jetty://https://jsonplaceholder.typicode.... because of No endpoint could be found for: jetty://https://jsonplaceholder.typicode.com/todos/, please check your classpath contains the needed Camel component jar.

骆驼路线:

from("jetty://" + serverUrl)
      .log("${body}")
      .to("direct:process");

from("direct:process").id("processing")
      .log("Body processed")
      .log(body().toString());

P.S 我正在使用骆驼 3.16.0

如错误消息所述,您的问题是由于 camel-jetty 不在您的类路径中。

假设你使用Maven,只需在你的项目的pom中添加如下依赖:

<dependency>
    <groupId>org.apache.camel</groupId>
    <artifactId>camel-jetty</artifactId>
    <version>3.16.0</version>
</dependency>

如果没有,您仍然可以从 here 下载它。