Magazine High tech

[ESB open source] Introduction à Apache CAMEL (partie 6/6) : tutorial CAMEL

Publié le 28 janvier 2014 par Hakym

[ESB open source] Introduction à Apache CAMEL (partie 6/6) : tutorial CAMEL
Poste réalisé par Mohamed Karim LILI (Ingénieur logiciel confirmé à OXIA)

Dans cet exemple (tiré du livre Camel in Action), nous créons un scénario qui consiste à copier un fichier d’un répertoire source vers un répertoire destination.  De ce fait, nous allons comparer l’approche Java classique avec l’approche Camel en créant une route qui se charge de charger un fichier XML à partir d’un emplacement spécifique et de le copier vers un répertoire cible.


Commençons par lee fichier POM.xml du projet Maven (sans compter la partie pluginManagement maven):
[ESB open source] Introduction à Apache CAMEL (partie 6/6) : tutorial CAMEL

Ensuite, on crée le deux fichiers java correspondants : FileCopier.java et le fichier FileCopierWithCamel.java : FileCopier.java : /**  * Licensed to the Apache Software Foundation (ASF) under one or more  * contributor license agreements.  See the NOTICE file distributed with  * this work for additional information regarding copyright ownership.  * The ASF licenses this file to You under the Apache License, Version 2.0  * (the "License"); you may not use this file except in compliance with  * the License.  You may obtain a copy of the License at  *  *   http://www.apache.org/licenses/LICENSE-2.0  *  * Unless required by applicable law or agreed to in writing, software  * distributed under the License is distributed on an "AS IS" BASIS,  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  * See the License for the specific language governing permissions and  * limitations under the License.  */ package camelinaction;
import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.io.OutputStream;
publicclass FileCopier {
   publicstaticvoid main(String args[])throws Exception {    File inboxDirectory =new File("data/inbox");    File outboxDirectory =new File("data/outbox");       outboxDirectory.mkdir();       File[] files = inboxDirectory.listFiles();    for(File source : files){    if(source.isFile()){    File dest =new File(    outboxDirectory.getPath()    + File.separator    + sourcegetName());    copyFile(source, dest);    }    }    }       privatestaticvoid copyFile(File source, File dest)    throws IOException {    OutputStream out =new FileOutputStream(dest);    byte[] buffer =newbyte[(int) source.length()];    FileInputStream in =new FileInputStream(source);    in.read(buffer);    try{    out.write(buffer);    }finally{    out.close();      in.close();    }    } }
Et le fichier FileCopierWithCamel.java :
/**  * Licensed to the Apache Software Foundation (ASF) under one or more  * contributor license agreements.  See the NOTICE file distributed with  * this work for additional information regarding copyright ownership.  * The ASF licenses this file to You under the Apache License, Version 2.0  * (the "License"); you may not use this file except in compliance with  * the License.  You may obtain a copy of the License at  *  *   http://www.apache.org/licenses/LICENSE-2.0  *  * Unless required by applicable law or agreed to in writing, software  * distributed under the License is distributed on an "AS IS" BASIS,  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  * See the License for the specific language governing permissions and  * limitations under the License.  */ package camelinaction;
import org.apache.camel.CamelContext; import org.apache.camel.builder.RouteBuilder; import org.apache.camel.impl.DefaultCamelContext;
publicclass FileCopierWithCamel {
   publicstaticvoid main(String args[])throws Exception {    // create CamelContext    CamelContext context =new DefaultCamelContext();
   // add our route to the CamelContext    context.addRoutes(new RouteBuilder(){    publicvoid configure(){    from("file:data/inbox?noop=true").to("file:data/outbox");    }    });
   // start the route and let it do its work    context.start();    Thread.sleep(10000);
   // stop the CamelContext    contextstop();    } }
Bien entendu, n’oubliez pas de configurer le fichier « log4j.properties » sous « src/main/resources » et de créer un répertoire « data/inbox » à la racine du projet qui contient le fichier XML suivant qu’on nommera par exemple « message1.xml » :
xmlversion="1.0"encoding="UTF-8"?> name="motor"amount="1"customer="honda"/>
Sommaire
[ESB open source] Introduction à Apache CAMEL (partie 6/6) : tutorial CAMEL

Bibliographie, Netographie et lien utiles
Camel in Action, Clause Ibsen et Jonathan Anstey, Editions MANNING http://camel.apache.org/ http://java.dzone.com/articles/open-source-integration-apache http://refcardz.dzone.com/refcardz/essential-camel-components#refcard-download-social-buttons-display

Retour à La Une de Logo Paperblog

A propos de l’auteur


Hakym 199 partages Voir son profil
Voir son blog

l'auteur n'a pas encore renseigné son compte l'auteur n'a pas encore renseigné son compte