Today 6 years ago Apache Camel was Created
Join the DZone community and get the full member experience.
Join For FreeOn Monday, March 19th 2007, James Strachan did the first commit for what became Apache Camel. The commit log entry is here.
![]() |
James Strachan founded the Apache Camel project with this first commit 6 years ago |
Even in the first commit, today's users of the latest Apache Camel releases can see the structure of the route builder, and the API with the component, endpoint, exchange, producer, consumer, et al.
You can take a look in this unit test from the first commit.
Though here is a teaser with the RouteBuilder from the first commit
RouteBuilder builder = new RouteBuilder() { public void configure() { from("seda://a").to("seda://b"); } };And the content based router was already included. Though today the headerEquals predicate has been slightly changes to header("foo").isEqualTo("bar") instead.
RouteBuilder builder = new RouteBuilder() { public void configure() { from("seda://a").choice() .when(headerEquals("foo", "bar")).to("seda://b") .when(headerEquals("foo", "cheese")).to("seda://c") .otherwise().to("seda://d"); } };In summer 2007 Apache Camel 1.0 was released, and that was a very impressive first release, which I previously have blogged about.
Today 6 years later, we have done 13677 commits on trunk (37 different committers), accordingly to the Apache Camel git commit log (git log --oneline | wc -l).
... and yeah we are closing in on the anticipated Apache Camel 2.11 release (likely being GA in next month).
Apache Camel
Published at DZone with permission of Claus Ibsen, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Trending
-
Top 10 Pillars of Zero Trust Networks
-
Integration Testing Tutorial: A Comprehensive Guide With Examples And Best Practices
-
Java String Templates Today
-
MLOps: Definition, Importance, and Implementation
Comments