public void configure()

in widget-gadget/src/main/java/sample/camel/WidgetGadgetRoute.java [31:40]


    public void configure() throws Exception {
        from("amqp:queue:order.queue")
                .choice()
                    .when().jsonpath("$.order[?(@.product=='widget')]")
                        .to("log:widget")
                        .to("amqp:queue:widget.queue")
                    .otherwise()
                        .to("log:gadget")
                        .to("amqp:queue:gadget.queue");
    }