public void configure()

in aot-basic/src/main/java/sample/camel/MyCamelRouter.java [36:43]


    public void configure() throws Exception {
        // start from a timer
        from("timer:java?period={{myPeriod}}").routeId("helloJava")
                // and call the bean
                .bean(myBean, "saySomething")
                // and log it
                .log("${body} at ${header.CamelTimerFiredTime}");
    }