284.5.3. 第 2 步:启动路由box消费者

在创建路由消费者时,请注意 routeboxUri 中的 # 条目与在 CamelContext Registry 中创建的内部 registry 中的 # 条目匹配,routebuilder 列表和分配Strategy/dispatchMap。请注意,所有路由builder 和相关路由都在内部上下文创建的 routebox 中启动

private String routeboxUri = "routebox:multipleRoutes?innerRegistry=#registry&routeBuilders=#routes&dispatchMap=#map";

public void testRouteboxRequests() throws Exception {
    CamelContext context = createCamelContext();
    template = new DefaultProducerTemplate(context);
    template.start();

    context.addRoutes(new RouteBuilder() {
        public void configure() {
            from(routeboxUri)
                .to("log:Routes operation performed?showAll=true");
        }
    });
    context.start();

    // Now use the ProducerTemplate to send the request to the routebox
    template.requestBodyAndHeader(routeboxUri, book, "ROUTE_DISPATCH_KEY", "addToCatalog");
}