无法在 Http 生产者(tomcat 服务器)接收文件

发布于 2024-12-09 11:06:55 字数 339 浏览 0 评论 0原文

  1. 我现在从骆驼开始。我正在尝试创建路由来处理文件组件中的文件并将其传递到 http tomcat 服务器。
  2. 我创建的路由如下

from("file:inbox?noop=false").to("http://localhost:8080/myServer/");

我也尝试过使用我的 IP地址代替 localhost

  1. 我没有收到任何编译错误,运行时也没有收到任何编译错误,并且文件正在从收件箱文件夹中进行处理,但我无法在 myServer 目录中接收该文件。
  2. 我使用的Camel版本是2.0.0。
  1. I am starting now with Camel. I am trying to create route as to process file from a file component and pass on to a http tomcat server.
  2. I have created the route as follows

from("file:inbox?noop=false").to("http://localhost:8080/myServer/");

I have also tried using my I.P address in place of localhost

  1. I am not getting any compilation error nor at runtime and the file is getting processed from inbox folder, but I am not able to receive the file in myServer directory.
  2. Camel version I am using is 2.0.0 .

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

人疚 2024-12-16 11:06:55

是的,这应该可以...你应该使用最新版本的 Camel (2.8.2 目前)...这是一个简单的单元测试,用于显示 FILE->HTTP 的实际操作...

import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.test.junit4.CamelTestSupport;
import org.junit.Test;

public class FileToHttpRouterTest extends CamelTestSupport {

    @Test
    public void test() throws Exception {
        Thread.sleep(1000);
    }

    @Override
    protected RouteBuilder createRouteBuilder() throws Exception {
        return new RouteBuilder() {
            @Override
            public void configure() throws Exception {
                from("timer://foo?fixedRate=true&period=200")
                    .setBody(simple("${exchangeId}"))
                    .to("file://tmp/inbox");

                from("file://tmp/inbox")
                    .to("http://localhost:9000/myTest");

                from("jetty:http://localhost:9000/myTest")
                    .log("received: ${body}");
            };
        };
    }
}

yep, this should work...you should use the latest version of Camel though (2.8.2 currently)...here is a simple unit test to show the FILE->HTTP in action...

import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.test.junit4.CamelTestSupport;
import org.junit.Test;

public class FileToHttpRouterTest extends CamelTestSupport {

    @Test
    public void test() throws Exception {
        Thread.sleep(1000);
    }

    @Override
    protected RouteBuilder createRouteBuilder() throws Exception {
        return new RouteBuilder() {
            @Override
            public void configure() throws Exception {
                from("timer://foo?fixedRate=true&period=200")
                    .setBody(simple("${exchangeId}"))
                    .to("file://tmp/inbox");

                from("file://tmp/inbox")
                    .to("http://localhost:9000/myTest");

                from("jetty:http://localhost:9000/myTest")
                    .log("received: ${body}");
            };
        };
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文