private void setupCamel() throws Exception {
// First we register a blog service in our bean registry
beans.put("blogService", new BlogService());
// Then we create the camel context with our bean registry
context = new DefaultCamelContext(new CamelInitialContextFactory().getInitialContext(beans));
// Then we add all the routes we need using the route builder DSL syntax
context.addRoutes(createRouteBuilder());
// And finally we must start Camel to let the magic routing begins