第 282 章 restlet 组件
从 Camel 版本 2.0 开始提供
Restlet 组件为消耗和生成 RESTful 资源提供基于 Restlet 的端点。
Maven 用户需要将以下依赖项添加到此组件的 pom.xml
中:
<dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-restlet</artifactId> <version>x.x.x</version> <!-- use the same version as your Camel core version --> </dependency>
另外,您需要在 pom.xml
文件中添加对 restlet maven 存储库的依赖:
<repository> <id>maven-restlet</id> <name>Public online Restlet repository</name> <url>https://maven.restlet.com</url> </repository>
282.1. URI 格式
restlet:restletUrl[?options]
restletUrl 格式:
protocol://hostname[:port][/resourcePattern]
restlet 促进了协议和应用程序方面的问题。Restlet Engine 的参考实现支持很多协议。但是,我们只测试了 HTTP 协议。默认端口为端口 80。我们还没有根据协议自动切换默认端口。
您可以使用以下格式在 URI 中附加查询选项 ?option=value& amp;option=value&…
INFO:看法对于理解标头来说是区分大小写的。例如,要使用 content-type,使用 Content-Type,而 作为位置使用 Location 等等。
在 Camel 2.14.0 和 2.14.1 中,我们收到了有关 camel-restlet 性能的丢弃报告。我们已向 996 期的 Restlet 团队报告了这一点。要更正这个问题,从 Camel 2.14.2 开始,您可以在端点 uris 上将 synchronous=true 设置为选项,或者将其设置为全局选项,因此所有端点都会继承这个选项。