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):
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;
public class FileCopier {
public static void 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
+ source.getName());
copyFile(source, dest);
}
}
}
private static void copyFile(File source, File dest)
throws IOException {
OutputStream out = new FileOutputStream(dest);
byte[] buffer = new byte[(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;
public class
FileCopierWithCamel {
public static void main(String args[]) throws Exception {
// create CamelContext
CamelContext context = new
DefaultCamelContext();
// add our route to the
CamelContext
context.addRoutes(new RouteBuilder() {
public void 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
context.stop();
}
}
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 » :
xml version="1.0" encoding="UTF-8"?>
Sommaire
- Introduction à Apache CAMEL (partie 1/6) : Problématique
- Introduction à Apache CAMEL (partie 2/6) : Qu’est ce que « Apache Camel » ?
- Introduction à Apache CAMEL (partie 3/6) : Comment fonctionne Camel ?
- Introduction à Apache CAMEL (partie 4/6): Le modèle message de Camel (Camel Message model)
- Introduction à Apache CAMEL (partie 5/6) : Le DSL Camel (Domain Specific Language)
- Introduction à Apache CAMEL (partie 6/6) : tutorial CAMEL
Bibliographie, Netographie et lien utiles
Camel in Action, Clause Ibsen et Jonathan Anstey, Editions MANNING
0 commentaires :
Enregistrer un commentaire