public void configure()

in supervising-route-controller/src/main/java/sample/camel/ApplicationRoutes.java [26:49]


    public void configure() throws Exception {
        from("timer:foo?period=5000")
            .id("foo")
            .startupOrder(2)
            .log("From timer (foo) ...");

        from("timer:bar?period=5000")
            .id("bar")
            .startupOrder(1)
            .log("From timer (bar) ...");

        from("undertow:http://localhost:9011")
            .id("undertow")
            .log("From undertow ...");

        from("undertow:http://localhost:9012")
            .id("undertow2")
            .autoStartup(false)
            .log("From undertow 2...");

        from("undertow:http://localhost:9013")
            .id("undertow3")
            .log("From undertow 3...");
    }