gpt4 book ai didi

java - Apache Camel 的 REST 端点

转载 作者:行者123 更新时间:2023-11-30 08:06:19 26 4
gpt4 key购买 nike

我正在尝试使用 Apache Camel 创建 REST 端点。我已经有一个 REST 服务,可以返回 JSON 内容,并且我希望此端点能够获取它。我的问题是,我不知道当我的 Camel 路线建成时会发生什么。目前,它没有做任何事情。这是我的代码:

restConfiguration().component("servlet")
.bindingMode(RestBindingMode.json)
.dataFormatProperty("prettyPrint", "true").host("localhost")
.port(9080);

rest("/ContextServices/rest/contextServices/document")
.consumes("application/json").produces("application/json")
.get("/testContext/557064c8f7f71f29cea0e657").outTypeList(String.class)
.to("bean:processor?method=affiche")
.to(dest.getRouteTo());

我正在端口 9080 上的本地 Tomcat 上运行 REST 服务,我的完整 URL 为

/ContextServices/rest/contextServices/document/{collection}/{id}.

我尝试阅读文档,但有两种语法,但都不起作用:

from("rest:get:hello:/french/{me}").transform().simple("Bonjour ${header.me}");

rest("/say")
.get("/hello").to("direct:hello")
.get("/bye").consumes("application/json").to("direct:bye")
.post("/bye").to("mock:update");

第一个是Java DSL,第二个是REST DSL,有什么区别?

非常感谢!

最佳答案

首先,REST组件本身并不是一个REST实现。它只是声明描述 REST 端点的语言。您应该使用 REST 的实际实现,例如 ReSTLet(请参阅完整列表 here )

我可能是错的,但是 AFAIR,REST 端点仅适用于您想要监听来自另一个应用程序的 REST 请求的情况。您需要的是向 REST 端点发出请求并处理它。问题是:你想什么时候触发请求?是某些事件,还是您想定期检查外部 REST 服务?对于后一种情况,我使用以下模式:

<route>
<from uri="timer:polling-rest?period=60000"/>
<setHeader headerName="CamelHttpMethod">
<constant>GET</constant>
</setHeader>
<recipientList>
<simple>http://${properties:service.url}/api/outbound-messages/all</simple>
</recipientList>
<unmarshal ref="message-format"/>

<!-- do something with the message, transform it, log,
send to another services, etc -->

<setHeader headerName="CamelHttpMethod">
<constant>DELETE</constant>
</setHeader>
<recipientList>
<simple>http://${properties:service.url}/api/outbound-messages/by-id/${header.id}</simple>
</recipientList>
</route>

对于使用 http 组件而不是 REST 的示例感到抱歉。我只是从我的工作项目中复制粘贴它,该项目使用纯 http。我想,通过 ReSTLet 或 CXF 组件之类的东西重写它。

关于java - Apache Camel 的 REST 端点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31046314/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com