Using Apache Camel with Ibatis
This is a quick tutorial about the usage of the very powerful Integration tool Apache Camel with Apache Ibatis. Many thanks to Apache Camel forums and Claus Ibsen. REQUIREMENTS I used Java version 1.5.0_16 Apache Maven version 2.0.9 A database mysql: I used a local db “moodle”, user “moodle”, password “moodle” and a table “mdl_user” [ create table mdl_user ( id int, firstname varchar(30), lastname varchar(30), email varchar(30) ); ] DOWNLOAD The full sample project can be download from here!...