用于文件下载的Camel rest API

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用于文件下载的Camel rest API相关的知识,希望对你有一定的参考价值。

是否有任何驼峰宁静的Web服务示例提供文件下载如下api

@GET
@Path("/jar")
@Produces(MediaType.APPLICATION_OCTET_STREAM)
public Response downloadFile() {
    File file = new File("/home/user/Downloads/classes.jar");
    ResponseBuilder response = Response.ok((Object) file);
    response.header("Content-Disposition", "attachment;filename=classes.jar");
    return response.build();
}
答案

你可以使用Camel REST DSLContent Enricher(特别是 - pollEnrich)的组合。

您的案例的示例实现可能如下所示:

// you can configure it as you want, it's just an example
restConfiguration().component("restlet").host("localhost").port(8081);

rest("/jar")
    .get()
    .produces(MediaType.APPLICATION_OCTET_STREAM_VALUE)
    .route()
    .routeId("downloadFile")
    .pollEnrich("file:/home/user/Downloads?fileName=classes.jar&noop=true")
    .setHeader("Content-Disposition", simple("attachment;filename=classes.jar"));

请注意,如果在指定路径中找不到该文件,pollEnrich将阻止,直到文件到达。您可以通过向long调用提供类型为pollEnrich的第二个参数来设置超时(以毫秒为单位)。

以上是关于用于文件下载的Camel rest API的主要内容,如果未能解决你的问题,请参考以下文章

使用SpringOAuthResttemplate的Camel Rest api使用者

使用 Guice 和 Undertow 在 Camel 中使用 rest Servlet

Django REST框架--认证和权限

Camel Rest XML DSL分离文件夹结果Unmarshall Exception

Apache Camel - 调用 http 或 rest 调用(通过 Shiro Security 过滤)

Apache Camel - 调用 http 或 rest 调用(通过 Shiro Security 过滤)