简体   繁体   English

Apache 骆驼路线不调用处理器

[英]Apache Camel route doesn't call Processor

I am trying to code my first Project with Apache Camel and Spring Boot.我正在尝试使用 Apache Camel 和 Spring Boot 编写我的第一个项目。 It should call a Rest-Endpoint and process the Data but my processor is never called.它应该调用一个 Rest-Endpoint 并处理数据,但我的处理器永远不会被调用。 What am I doing wrong here?我在这里做错了什么?

The logs show that the route is started and that it consumes from "direct://httpRoute".日志显示路由已启动,并且从“direct://httpRoute”消耗。 But in the End there are no logs which indicates that MyProcessor is called.但最后没有日志表明调用了 MyProcessor。

TssImportApplication.java TssImportApplication.java

package de.importer.TssImport;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class TssImportApplication {

    public static void main(String[] args) {
        SpringApplication.run(TssImportApplication.class, args);
    }

}

MyRoute.java MyRoute.java

package de.importer.TssImport.routes;

import lombok.extern.slf4j.Slf4j;
import org.apache.camel.Exchange;
import org.apache.camel.Processor;
import org.apache.camel.builder.RouteBuilder;
import org.springframework.stereotype.Component;

@Component
@Slf4j
public class MyRoute extends RouteBuilder {
    @Override
    public void configure() throws Exception {
        log.error("TEST");
        from("direct:httpRoute").to("https://jsonplaceholder.typicode.com/todos/1").process(new MyProcessor());
    }

    class MyProcessor implements Processor {

        public void process(Exchange exchange) throws Exception {
            log.error("TEST 2");
            System.out.println(exchange.getIn().getBody(String.class));
        }
    }
}

pom.xml pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.3.1.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>
    <groupId>de.importer</groupId>
    <artifactId>TssImport</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>TssImport</name>
    <description>Project to import data</description>

    <properties>
        <java.version>1.8</java.version>
    </properties>

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.apache.camel.springboot</groupId>
                <artifactId>camel-spring-boot-dependencies</artifactId>
                <version>3.3.0</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>

    <dependencies>
        <dependency>
            <groupId>org.apache.camel.springboot</groupId>
            <artifactId>camel-spring-boot-starter</artifactId>
        </dependency>

        <dependency>
            <groupId>org.apache.camel.springboot</groupId>
            <artifactId>camel-log-starter</artifactId>
        </dependency>

        <dependency>
            <groupId>org.apache.camel.springboot</groupId>
            <artifactId>camel-http-starter</artifactId>
        </dependency>

        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

</project>

LOG日志

  .   ____          _            __ _ _
 /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
 \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
  '  |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/
 :: Spring Boot ::        (v2.3.1.RELEASE)

2020-06-15 17:47:54.590  INFO 30161 --- [           main] de.importer.TssImport.TssImportApplication   : Starting TssImportApplication on importer-VirtualBox with PID 30161 (/home/importer/Documents/TssImport/tssimport/target/classes started by importer in /home/importer/Documents/TssImport/tssimport)
2020-06-15 17:47:54.593  INFO 30161 --- [           main] de.importer.TssImport.TssImportApplication   : No active profile set, falling back to default profiles: default
2020-06-15 17:47:55.732  INFO 30161 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'org.apache.camel.spring.boot.CamelAutoConfiguration' of type [org.apache.camel.spring.boot.CamelAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2020-06-15 17:47:55.912  INFO 30161 --- [           main] o.apache.camel.support.LRUCacheFactory   : Detected and using LRUCacheFactory: camel-caffeine-lrucache
2020-06-15 17:47:56.437 ERROR 30161 --- [           main] de.importer.TssImport.routes.MyRoute         : TEST
2020-06-15 17:47:56.494  INFO 30161 --- [           main] o.a.c.s.boot.SpringBootRoutesCollector   : Loading additional Camel XML routes from: classpath:camel/*.xml
2020-06-15 17:47:56.495  INFO 30161 --- [           main] o.a.c.s.boot.SpringBootRoutesCollector   : Loading additional Camel XML rests from: classpath:camel-rest/*.xml
2020-06-15 17:47:56.886  INFO 30161 --- [           main] o.a.camel.component.http.HttpComponent   : Created ClientConnectionManager org.apache.http.impl.conn.PoolingHttpClientConnectionManager@77bb0ab5
2020-06-15 17:47:56.918  INFO 30161 --- [           main] o.a.c.impl.engine.AbstractCamelContext   : Apache Camel 3.3.0 (CamelContext: camel-1) is starting
2020-06-15 17:47:56.919  INFO 30161 --- [           main] o.a.c.impl.engine.AbstractCamelContext   : StreamCaching is not in use. If using streams then its recommended to enable stream caching. See more details at http://camel.apache.org/stream-caching.html
2020-06-15 17:47:57.037  INFO 30161 --- [           main] o.a.c.impl.engine.AbstractCamelContext   : Route: route1 started and consuming from: direct://httpRoute
2020-06-15 17:47:57.046  INFO 30161 --- [           main] o.a.c.impl.engine.AbstractCamelContext   : Total 1 routes, of which 1 are started
2020-06-15 17:47:57.047  INFO 30161 --- [           main] o.a.c.impl.engine.AbstractCamelContext   : Apache Camel 3.3.0 (CamelContext: camel-1) started in 0.128 seconds
2020-06-15 17:47:57.052  INFO 30161 --- [           main] de.importer.TssImport.TssImportApplication   : Started TssImportApplication in 2.989 seconds (JVM running for 3.806)
2020-06-15 17:47:57.060  WARN 30161 --- [extShutdownHook] o.a.c.s.boot.SpringBootCamelContext      : CamelContext has only been running for less than a second. If you intend to run Camel for a longer time then you can set the property camel.springboot.main-run-controller=true in application.properties or add spring-boot-starter-web JAR to the classpath.
2020-06-15 17:47:57.061  INFO 30161 --- [extShutdownHook] o.a.c.impl.engine.AbstractCamelContext   : Apache Camel 3.3.0 (CamelContext: camel-1) is shutting down
2020-06-15 17:47:57.066  INFO 30161 --- [extShutdownHook] o.a.c.i.engine.DefaultShutdownStrategy   : Starting to graceful shutdown 1 routes (timeout 45 seconds)
2020-06-15 17:47:57.073  INFO 30161 --- [ - ShutdownTask] o.a.c.i.engine.DefaultShutdownStrategy   : Route: route1 shutdown complete, was consuming from: direct://httpRoute
2020-06-15 17:47:57.074  INFO 30161 --- [extShutdownHook] o.a.c.i.engine.DefaultShutdownStrategy   : Graceful shutdown of 1 routes completed in 0 seconds
2020-06-15 17:47:57.081  INFO 30161 --- [extShutdownHook] o.a.c.impl.engine.AbstractCamelContext   : Apache Camel 3.3.0 (CamelContext: camel-1) uptime 0.163 seconds
2020-06-15 17:47:57.081  INFO 30161 --- [extShutdownHook] o.a.c.impl.engine.AbstractCamelContext   : Apache Camel 3.3.0 (CamelContext: camel-1) is shutdown in 0.020 seconds

Process finished with exit code 0

First of all, you application will shutdown very quickly.首先,您的应用程序将很快关闭。 To keep the main thread blocked so that Camel stays up, either include the spring-boot-starter-web dependency, or add camel.springboot.main-run-controller=true to your application.properties or application.yml file要保持主线程阻塞以便 Camel 保持运行,请包含 spring-boot-starter-web 依赖项,或将camel.springboot.main-run-controller=true添加到您的application.propertiesapplication.yml文件

https://cwiki.apache.org/confluence/display/CAMEL/Spring+Boot https://cwiki.apache.org/confluence/display/CAMEL/Spring+Boot

But still there will be no processor logs because you are not sending any messages to the direct:httpRoute so the processor is not invoked.但是仍然不会有处理器日志,因为您没有向direct:httpRoute发送任何消息,因此不会调用处理器。

Since you can't send any message to direct:httpRoute from outside the vm, you will need something like below to send a message由于您无法从 vm 外部向direct:httpRoute发送任何消息,因此您需要类似下面的内容来发送消息

Here I am adding a rest controller and when you go to send-message-to-direct-channel endpoint in browser, it will send a message to your camel route.在这里,我添加了一个 rest controller 并且当您将 go 发送到浏览器中send-message-to-direct-channel端点时,它将向您的 camel 路由端点发送一条消息。 This will require spring-boot-starter-web as you are adding rest controller这将需要spring-boot-starter-web因为您正在添加 rest controller

@RestController
public class DirectChannelController {
  
  @Autowired
  CamelContext camelContext;
  
  @Autowired
  ProducerTemplate producerTemplate;

  @RequestMapping(value = "/send-message-to-direct-channel")
  public void startCamel() {
      producerTemplate.sendBody("direct:httpRoute", "An example message everytime");
  }
}

or you can try或者你可以试试

@Component
public class MyRunner implements CommandLineRunner {

    @Autowired
    CamelContext camelContext;
    
    @Autowired
    ProducerTemplate producerTemp;


   @Override
   public void run(String... args) throws 
                         Exception {
   producerTemp.sendBody("direct:direct:httpRoute",
               "An example message everytime");
   }
}

Or try adding the following route to your configure method if you want to trigger it via timer或者如果您想通过计时器触发它,请尝试将以下路由添加到您的配置方法

from("timer://simpleTimer?period=2000")
   .setBody()
   .simple("This is a test message")
      .to("direct:httpRoute");

Add camel.springboot.main-run-controller=true to keep the application up添加camel.springboot.main-run-controller=true以保持应用程序正常运行

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM