Приложение Red Hat Fuse Quickstart «Маршрутизатор на основе содержимого - Java DSL» не создает папку «Работа» - PullRequest
0 голосов
/ 16 ноября 2018

Задача

Приложение Red Hat Fuse Quickstart " Маршрутизатор на основе содержимого - Java DSL " не работает. т.е. при сборке, запуске и развертывании (в «Red Hat Fuse 7.1») папка «работа» никогда не создается.

Вот код Java:

package com.mycompany.camel;

import org.apache.camel.builder.RouteBuilder;

public class CamelRoute extends RouteBuilder {

    @Override
    public void configure() throws Exception {

        from("file:work/cbr/input")  //<== "work" folder not created...
            .log("Receiving order ${file:name}")
            .choice()
                .when().xpath("//order/customer/country[text() = 'UK']")
                    .log("Sending order ${file:name} to the UK")
                    .to("file:work/cbr/output/uk")
                .when().xpath("//order/customer/country[text() = 'US']")
                    .log("Sending order ${file:name} to the US")
                    .to("file:work/cbr/output/us")
                .otherwise()
                    .log("Sending order ${file:name} to another country")
                    .to("file:work/cbr/output/others")
            .log("Done processing ${file:name}");
    }

}

Обратите внимание, что " Маршрутизатор на основе содержимого - Blueprint DSL " работает (т. Е. Использует файл blueprint.xml для определения маршрута, а не кода Java).

Я использую шаблон "быстрого старта", найденный в "Red Hat Developer Studio".

т.е. Файл -> Создать -> Fuse Integration Project -> [создать имя проекта] -> выбрать «Автономную» платформу, выбрать «Karaf / Fuse on Karaf» -> в разделе «Начинающий» выбрать «Контент на основе маршрутизатора - Java» DSL "-> Готово -> и т. Д.

Встроенный и горячий развернутый. Проект быстрого запуска Java DSL запускается и запускается, но не может создать родительскую «рабочую» папку (а тем более другие подпапки).

Что может отсутствовать в шаблоне проекта и / или конфигурации?

Мне интересно: Java DSL уходит на второй план в пользу Spring DSL и / или Blueprint DSL? (Я использовал Java DSL со старым Jboss Fuse 6.3 и мне понравилось).

Для чего это стоит, вот pom.xml:

<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.mycompany</groupId>
  <artifactId>camel-java-cbr</artifactId>
  <version>1.0.0-SNAPSHOT</version>
  <packaging>bundle</packaging>
  <name>Fuse CBR Quickstart - Java</name>
  <description>Camel Content-Based Router Example using the Java DSL</description>
  <licenses>
    <license>
      <name>Apache License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <properties>
    <version.maven-bundle-plugin>3.2.0</version.maven-bundle-plugin>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
    <jboss.fuse.bom.version>7.1.0.fuse-710023-redhat-00001</jboss.fuse.bom.version>
  </properties>
  <dependencyManagement>
    <dependencies>
      <dependency>
        <groupId>org.jboss.fuse</groupId>
        <artifactId>jboss-fuse-parent</artifactId>
        <version>${jboss.fuse.bom.version}</version>
        <type>pom</type>
        <scope>import</scope>
      </dependency>
    </dependencies>
  </dependencyManagement>
  <dependencies>
    <dependency>
      <groupId>org.apache.camel</groupId>
      <artifactId>camel-core</artifactId>
    </dependency>
    <dependency>
      <groupId>org.apache.camel</groupId>
      <artifactId>camel-test</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-api</artifactId>
    </dependency>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-log4j12</artifactId>
    </dependency>
    <dependency>
      <groupId>log4j</groupId>
      <artifactId>log4j</artifactId>
    </dependency>
  </dependencies>
  <repositories>
    <repository>
      <releases>
        <enabled>true</enabled>
        <updatePolicy>never</updatePolicy>
      </releases>
      <snapshots>
        <enabled>false</enabled>
      </snapshots>
      <id>fuse-public-repository</id>
      <name>FuseSource Community Release Repository</name>
      <url>https://repo.fusesource.com/nexus/content/groups/public</url>
    </repository>
    <repository>
      <releases>
        <enabled>true</enabled>
        <updatePolicy>never</updatePolicy>
      </releases>
      <snapshots>
        <enabled>false</enabled>
      </snapshots>
      <id>red-hat-ga-repository</id>
      <name>Red Hat GA Repository</name>
      <url>https://maven.repository.redhat.com/ga</url>
    </repository>
    <repository>
      <releases>
        <enabled>true</enabled>
        <updatePolicy>never</updatePolicy>
      </releases>
      <snapshots>
        <enabled>false</enabled>
      </snapshots>
      <id>red-hat-ea-repository</id>
      <name>Red Hat EA Repository</name>
      <url>https://maven.repository.redhat.com/earlyaccess/all</url>
    </repository>
    <repository>
      <releases>
        <enabled>true</enabled>
        <updatePolicy>never</updatePolicy>
      </releases>
      <snapshots>
        <enabled>false</enabled>
      </snapshots>
      <id>jboss-ea-repository</id>
      <name>Red Hat JBoss Early Access Repository</name>
      <url>http://repository.jboss.org/nexus/content/groups/ea</url>
    </repository>
  </repositories>
  <pluginRepositories>
    <pluginRepository>
      <releases>
        <enabled>true</enabled>
        <updatePolicy>never</updatePolicy>
      </releases>
      <snapshots>
        <enabled>false</enabled>
      </snapshots>
      <id>fuse-public-repository</id>
      <name>FuseSource Community Release Repository</name>
      <url>https://repo.fusesource.com/nexus/content/groups/public</url>
    </pluginRepository>
    <pluginRepository>
      <releases>
        <enabled>true</enabled>
        <updatePolicy>never</updatePolicy>
      </releases>
      <snapshots>
        <enabled>false</enabled>
      </snapshots>
      <id>red-hat-ga-repository</id>
      <name>Red Hat GA Repository</name>
      <url>https://maven.repository.redhat.com/ga</url>
    </pluginRepository>
    <pluginRepository>
      <releases>
        <enabled>true</enabled>
        <updatePolicy>never</updatePolicy>
      </releases>
      <snapshots>
        <enabled>false</enabled>
      </snapshots>
      <id>red-hat-ea-repository</id>
      <name>Red Hat EA Repository</name>
      <url>https://maven.repository.redhat.com/earlyaccess/all</url>
    </pluginRepository>
    <pluginRepository>
      <releases>
        <enabled>true</enabled>
        <updatePolicy>never</updatePolicy>
      </releases>
      <snapshots>
        <enabled>false</enabled>
      </snapshots>
      <id>jboss-ea-repository</id>
      <name>Red Hat JBoss Early Access Repository</name>
      <url>http://repository.jboss.org/nexus/content/groups/ea</url>
    </pluginRepository>
  </pluginRepositories>
  <build>
    <defaultGoal>install</defaultGoal>
    <plugins>
      <plugin>
        <groupId>org.apache.felix</groupId>
        <artifactId>maven-bundle-plugin</artifactId>
        <version>${version.maven-bundle-plugin}</version>
        <extensions>true</extensions>
        <configuration>
          <instructions>
            <Bundle-SymbolicName>myJavaDsl</Bundle-SymbolicName>
            <Bundle-Name>Camel Content-Based Router Example using the Java DSL [myJavaDsl]</Bundle-Name></instructions></configuration>
      </plugin>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>3.7.0</version>
        <configuration>
          <source>1.8</source>
          <target>1.8</target>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-resources-plugin</artifactId>
        <version>3.0.2</version>
        <configuration>
          <encoding>UTF-8</encoding>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>exec-maven-plugin</artifactId>
        <version>1.6.0</version>
        <configuration>
          <mainClass>com.mycompany.camel.Launcher</mainClass>
          <includePluginDependencies>false</includePluginDependencies>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>

Red Hat Developer Studio, версия: 12.9.0.GA

плавкая karaf-7.1.0.fuse-710023-RedHat-00001

jdk1.8.0_121

C: \ Apache-Maven-3.6.0

Использование проектов быстрого старта описано в Руководстве пользователя Red Hat Fuse Tooling - PDF

Ответы [ 3 ]

0 голосов
/ 05 декабря 2018

Похоже, ваш маршрут вообще не начинался. Попробуйте использовать прямой ref для компоновщика маршрутов вместо сканирования пакетов следующим образом:

<camel:camelContext id="aaa.bbb.ccc.jar" xmlns="http://camel.apache.org/schema/blueprint">
    <camel:routeBuilder ref="routeBuilder"/>
</camel:camelContext>
<bean id="routeBuilder" class="aaa.bbb.ccc.jar.CamelRoute" />
0 голосов
/ 10 декабря 2018

Я сделал следующие шаги, чтобы заставить его работать с Fuse runtime:

  1. создать новый проект интеграции Fuse - Standalone, Karaf / Fuse on Karaf, CBR - Java DSL
  2. создать новые папки и файл "src / main / resources / OSGI-INF / blueprint / blueprint.xml
  3. blueprint.xml содержимое файла:

<?xml version="1.0" encoding="UTF-8"?> <blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation=" http://www.osgi.org/xmlns/blueprint/v1.0.0 https://www.osgi.org/xmlns/blueprint/v1.0.0/blueprint.xsd http://camel.apache.org/schema/blueprint http://camel.apache.org/schema/blueprint/camel-blueprint.xsd"> <bean class="com.mycompany.camel.CamelRoute" id="myRouteBuilder"/> <camelContext id="cbr-example-context" xmlns="http://camel.apache.org/schema/blueprint"> <routeBuilder ref="myRouteBuilder"/> </camelContext> </blueprint>

развернуть проект через Серверы представление в Red Hat Developer Studio

Поскольку файл находится в каталоге OSGI-INF / blueprint внутри нашего JAR-файла, он будет автоматически активированкак только комплект будет установлен.Это возможно, потому что Red Hat Fuse использует Apache Karaf с развертывателем Blueprint - см. Развертывание в Apache Karaf - OSGi Services

В любом случае, предоставляемые шаблоны должны работать «из коробки».Поэтому я поднял вопрос для разработчиков Fuse Tooling - https://issues.jboss.org/browse/FUSETOOLS-3178

0 голосов
/ 19 ноября 2018

Проверьте права доступа к папке для C: \, а также используйте uri, как указано ниже:

from ("file: // C: / AAAInput /? AutoCreate = true & noop = true")

...